首页 > 其他 > 详细

vuex存数据,防止刷新数据丢失

时间:2019-05-07 18:03:03      阅读:162      评论:0      收藏:0      [点我收藏+]

 

 

 1 created() { 
 2   if (sessionStorage.getItem(‘store‘)) {
 3     this.$store.replaceState(Object.assign({}, this.$store.state, JSON.parse(sessionStorage.getItem(‘store‘))))
 4   }
 5   let isOnIOS = navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/iPhone/i);
 6   let eventName = isOnIOS ? ‘pagehide‘ : ‘beforeunload‘;
 7 
 8   window.addEventListener(eventName, () => {
 9     sessionStorage.setItem(‘store‘, JSON.stringify(this.$store.state));
10   })
11 }

 

vuex存数据,防止刷新数据丢失

原文:https://www.cnblogs.com/shoestrong/p/10826952.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!