vue3使用vuex页面刷新后store丢失问题

问题:页面刷新时,store丢失
解决方案:在created中,将store的内容放在sessionStorage中。
以下为vue3示例
setup() {
const store = useStore();

// 在页面加载时读取sessionStorage里的状态信息
if (sessionStorage.getItem('store')) {
// 存储状态
store.replaceState(Object.assign({}, store.state, JSON.parse(sessionStorage.getItem('store'))))
}
// 在页面刷新时将vuex里的信息保存到sessionStorage里
window.addEventListener('beforeunload', () => {
sessionStorage.setItem('store', JSON.stringify(store.state))

vue3使用vuex页面刷新后store丢失问题最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/16520.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>