书写到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 }; } }) ], }); |