我将vue.js与nuxt一起使用,并希望在离开站点时从vuex存储中删除某些内容。
我尝试过
beforeDestroy ({ store }) {
store.commit('auth/setUserShowSecureAccountHint', false)
}
不知道哪个不能作为商店使用
也是
beforeDestroy () {
this.store.commit('auth/setUserShowSecureAccountHint', false)
}
不是作为store
工作是未知的。
离开网站后如何访问vuex商店?
您应在store
关键字前面加上$
符号,如下所示:
beforeDestroy () {
this.$store.commit('auth/setUserShowSecureAccountHint', false)
}