vue写代码的时候怎么把共享数据state保存到浏览器,防止每次关闭,数据重置

书写到store的index。js文件中,即vueX实例对象的store中

export default new Vuex.Store({

  state,

  mutations,

  actions,

  getters,

  modules: {},

  // *vuex数据持久化配置

  plugins:[

    createPersistedState({

      //存储方式:LocaLStorage、sessionStorage、cookies要注意,这个方法和前两个不一样,下面的state是解析的数据源,key是缓存到本地的键值对

      storage: window.sessionStorage,//关闭及取消

      // 存储的key 的key值

      key: "store",

      render(state) {

        //要存储的数据:本项目采用es6扩展运算符的方式存储了state中所有的数据

        return { ...state };

      }

    })

  ],

});

上一篇:小程序Progress组件介绍


下一篇:mysql 查询 有某个字段的表