vuex刷新数据清空的问题 - 稳住别慌 - 博客园 (cnblogs.com)

//可以写在APP.vue的created里 
// vuex状态管理,在网页刷新数据被清空的解决方法。
if (sessionStorage.getItem('store')) {
this.$store.replaceState(
Object.assign({},
this.$store.state,
JSON.parse(sessionStorage.getItem('store'))
)
)
}

// 监听,在页面刷新时将vuex里的信息保存到sessionStorage里
window.addEventListener('beforeunload', () => {
sessionStorage.setItem('store', JSON.stringify(this.$store.state))
})
}

  

posted on 2021-05-19 08:54  巍MG  阅读(1032)  评论(0编辑  收藏  举报