好像我们说的不是一个意思,我说的不是在组件里怎么用,我说的是【用 mapActions 辅助函数将组件的 methods 映射为 store.dispatch 调用】例如:官方文档里写的
import { mapActions } from 'vuex'
export default {
methods: {
...mapActions([
'decrement' // 映射 this.increment() 为 this.$store.dispatch('decrement')
])
}
}
在组件中分发 Action的时候,给decrement怎么传递参数?