whychdw
2019-07-05 7ab97c4ada45550abc7f440d60549b249726a9ff
src/App.vue
@@ -11,7 +11,12 @@
    //在页面加载时读取sessionStorage里的状态信息
    if (sessionStorage.getItem("store") ) {
        this.$store.replaceState(Object.assign({}, this.$store.state,JSON.parse(sessionStorage.getItem("store"))))
    }
    }
    // 判断是否已经登录
    if(!this.$store.state.login) {
      this.$router.push('/');
    }
    //在页面刷新时将vuex里的信息保存到sessionStorage里
    window.addEventListener("beforeunload",()=>{