离开网站后如何访问vuex商店

问题描述 投票:1回答:1

我将vue.js与nuxt一起使用,并希望在离开站点时从vuex存储中删除某些内容。

我尝试过

beforeDestroy ({ store }) {
  store.commit('auth/setUserShowSecureAccountHint', false)
}

不知道哪个不能作为商店使用

也是

beforeDestroy () {
  this.store.commit('auth/setUserShowSecureAccountHint', false)
}

不是作为store工作是未知的。

离开网站后如何访问vuex商店?

vue.js vuex nuxt.js
1个回答
1
投票

您应在store关键字前面加上$符号,如下所示:

beforeDestroy () {
  this.$store.commit('auth/setUserShowSecureAccountHint', false)
}

© www.soinside.com 2019 - 2024. All rights reserved.