vue 使用vuex 刷新时保存数据

vue

created () {

this.$store.replaceState(Object.assign(this.$store.state,JSON.parse(localStorage.getItem("beforeunload"))));

window.addEventListener('beforeunload', ()=>{

let state = JSON.stringify(this.$store.state)

localStorage.setItem("beforeunload",state);

});

},

在created 生命周期中 保存数据 和同步数据

以上是 vue 使用vuex 刷新时保存数据 的全部内容, 来源链接: utcz.com/z/379198.html

回到顶部