Доработки реакции кнопок

This commit is contained in:
Book Pauk
2019-01-10 19:12:45 +07:00
parent 3f635d604f
commit c79c98f53d
2 changed files with 45 additions and 26 deletions

View File

@@ -5,6 +5,7 @@ import createPersistedState from 'vuex-persistedstate';
import root from './root.js';
import uistate from './modules/uistate';
import config from './modules/config';
import reader from './modules/reader';
Vue.use(Vuex);
@@ -13,7 +14,8 @@ const debug = process.env.NODE_ENV !== 'production';
export default new Vuex.Store(Object.assign({}, root, {
modules: {
uistate,
config
config,
reader,
},
strict: debug,
plugins: [createPersistedState()]