浏览器刷新后store的state数据消失

App.vue

    mounted() {
            window.addEventListener('unload', this.saveState)
        },
        methods: {
            saveState() {
                sessionStorage.setItem('state', JSON.stringify(this.$store.state))
            }
        }

你可能感兴趣的:(前端,前端,javascript,开发语言)