//需要先下载插件npm install vuex-persistedstate --save 或者 使用yarn add vuex-persistedstate --save
//在vuex初始化时导入插件importpersistfrom'vuex-persistedstate'
//并使用exportdefaultnewVuex.Store({
state:{
},mutations:{
},actions:{
},modules:{
},
plugins:[newpersist({
storage:window.localStorage,
})
,],//会自动保存状态,刷新时不会丢失})