vue页面刷新后store内的数据清空

  • Post author:
  • Post category:vue



解决方法:

app.vue

created () {
    // 在页面加载时读取sessionStorage里的状态信息
    if (sessionStorage.getItem('store')) {
      this.$store.replaceState(
        Object.assign(
          {},
          this.$store.state,
          JSON.parse(sessionStorage.getItem('store'))
        )
      )
    } // 在页面刷新时将vuex里的信息保存到sessionStorage里 // beforeunload事件在页面刷新时先触发

    window.addEventListener('beforeunload', () => {
      sessionStorage.setItem('store', JSON.stringify(this.$store.state))
    })
  },



版权声明:本文为weixin_54386178原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。