We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c861eab commit c129fdbCopy full SHA for c129fdb
src/store/mutations.js
@@ -22,6 +22,7 @@ const mutations = {
22
[types.EMPTY_STATE]: (state, payload) => {
23
payload.store.replaceState(cloneDeep(payload.initialState));
24
},
25
+
26
[types.REMOVE_ALL_STATE_PROPS_ACTIONS]: (state) =>{
27
const emptyObj = {
28
userProps: [],
@@ -30,6 +31,7 @@ const mutations = {
30
31
}
32
Object.assign(state, emptyObj)
33
34
35
[types.TOGGLE_TUTORIAL]: (state) => {
36
state.showTutorial = !state.showTutorial;
37
0 commit comments