Vuex 持久化----解決刷新頁面,數據丟失

1,利用localStorage或者是sessionStorage在vuex操做store的時候同時對存儲操做vue

2,利用插件 vuex-persistedstate (Persist Vuex state with localStorage ,默認存儲到localStorage)vuex

  • Installation

$ npm install vuex-persistedstate

 在store下的index.js中npm

import createPersistedState from "vuex-persistedstate"
const store = new Vuex.Store({
  // ...
  plugins: [createPersistedState()]
})

這樣就能夠了。session

相關文章
相關標籤/搜索