【发布时间】:2021-07-31 09:10:18
【问题描述】:
如何访问 Vue 实例上的商店。本质上,我要做这样的事情:
Vue.store.dispatch('someAction')
或
Vue.$store.dispatch('someAction')
【问题讨论】:
如何访问 Vue 实例上的商店。本质上,我要做这样的事情:
Vue.store.dispatch('someAction')
或
Vue.$store.dispatch('someAction')
【问题讨论】:
如果你在 main.js 中添加了 vuex
所以你可以做this.$store.dispatch('someAction')
另见 vuex 文档中的 this
【讨论】: