刷新页面,vuex里面数据丢失、清空。有时候我们需要把一些数据固话到本地,即使刷新也不能清空,例如:登陆状态、token等。这是就需要用到vuex数据持久化
//需要先下载插件npm install vuex-persistedstate--save 或者 使用yarnaddvuex-persistedstate--save
//在vuex初始化时导入插件importpersistfrom'vuex-persistedstate'//并使用exportdefaultnewVuex.Store({state:{},mutations:{},actions:{},modules:{},plugins:[newpersist({storage:window.localStorage,}),],//会自动保存状态,刷新时不会丢失})