【VUE】-- vuex store 刷新页面数据丢失解决
2019-09-29 本文已影响0人
miniy_7
使用插件
vuex-along
解决刷新页面数据丢失,其基本原理也是将 store 数据保存是进行持久化操作
用法:
- 安装
npm install vuex-along --save
- 添加至 store 的 plugins 的数组里
import createVuexAlong from 'vuex-along'
export default new Vuex.Store({
state:{...},
modules:{...},
plugins: [createVuexAlong()]
});