其他分享
首页 > 其他分享> > Vuex持久化存储之vuex-persist

Vuex持久化存储之vuex-persist

作者:互联网

Vuex的状态存储并不能持久化,存储在 Vuex 中的 store 里的数据,只要一刷新页面,数据就丢失了

所以引入vuex-persist 插件,可以自动将 Vuex的 store 数据本地持久化存储

安装: 

npm install --save vuex-persist 

使用: 

import VuexPersist from 'vuex-persist'

const vuexLC = new VuexPersist ({storage: window.localStorage }) 

const store = new Vuex.Store({   

state: { ... },   

mutations: { ... },   

actions: { ... },   

plugins: [vuexLC.plugin]

})

标签:...,存储,Vuex,persist,vuex,store
来源: https://www.cnblogs.com/IsSshuai/p/14098252.html