src/App.vue
@@ -12,6 +12,11 @@ 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",()=>{