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 a6a8af1 commit 0144a5cCopy full SHA for 0144a5c
package.json
@@ -59,6 +59,7 @@
59
"vuejs-datetimepicker": "^1.1.13",
60
"vuetify": "2.0.0",
61
"vuex": "^3.4.0",
62
+ "vuex-persistedstate": "^4.1.0",
63
"webpack": "^5.90.3"
64
},
65
"devDependencies": {
src/store/index.js
@@ -4,6 +4,7 @@ import playgroundStore from './playgroundStore';
4
import mainStore from './mainStore';
5
import globalStore from './globalStore';
6
import walletStore from './walletStore'
7
+import createPersistedState from 'vuex-persistedstate';
8
Vue.use(Vuex)
9
10
export default new Vuex.Store({
@@ -12,6 +13,7 @@ export default new Vuex.Store({
12
13
mainStore,
14
globalStore,
15
walletStore
- }
16
+ },
17
+ plugins: [createPersistedState()]
18
})
19
0 commit comments