vuex的state浏览器刷新后没有数据

需要在App.vue页面的create方法中用sessionStorage 保存下vuex的state

 created(){
     //在页面加载时读取sessionStorage里的状态信息
    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 @ 2021-11-17 14:22  hjMa  阅读(124)  评论(0编辑  收藏  举报