Blame view

src/App.vue 631 Bytes
yuanshuhui authored
1
2
3
4
5
6
7
<template>
  <div id="app">
    <router-view />
  </div>
</template>

<script>
yuanshuhui authored
8
9
export default {
  name: "App",
yuanshuhui authored
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  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));
    });
  },
yuanshuhui authored
27
};
yuanshuhui authored
28
</script>