1,利用localStorage
或者是sessionStorage
在vuex操做store的時候同時對存儲操做vue
2,利用插件 vuex-persistedstate (Persist Vuex state with localStorage ,默認存儲到localStorage)vuex
$ npm install vuex-persistedstate
在store下的index.js中npm
import createPersistedState from "vuex-persistedstate" const store = new Vuex.Store({ // ... plugins: [createPersistedState()] })
這樣就能夠了。session