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

This commit is contained in:
Book Pauk
2022-09-12 17:59:29 +07:00
parent 00150966e2
commit a46276cf1a
6 changed files with 250 additions and 15 deletions

View File

@@ -7,6 +7,7 @@ const state = {
showCounts: true,
showDeleted: false,
abCacheEnabled: true,
langDefault: '',
},
};
@@ -22,7 +23,7 @@ const mutations = {
state.config = value;
},
setSettings(state, value) {
state.settings = value;
state.settings = Object.assign({}, state.settings, value);
},
};