Работа над проектом

This commit is contained in:
Book Pauk
2022-08-21 18:08:50 +07:00
parent fc411565b9
commit f3d25039bc
2 changed files with 91 additions and 12 deletions

View File

@@ -1,6 +1,10 @@
// initial state
const state = {
config: {},
settings: {
limit: 50,
expanded: [],
},
};
// getters
@@ -14,6 +18,9 @@ const mutations = {
setConfig(state, value) {
state.config = value;
},
setSettings(state, value) {
state.settings = value;
},
};
export default {