一、vuex数据持久化

  1. npm install vuex-persistedstate

  2. import createPersistedState from 'vuex-persistedstate'

      const store = new Vuex.Store({

        modules: {
      app,
      user
       },
       getters,
       plugins: [createPersistedState()] //加上这个就可以了
     })

相关文章: