mapActions传参
方式1
this.$store.dispatch('setShowLogin', true)
方式2
将this.setShowLogin()
映射为this.$store.dispatch('setShowLogin')
...mapActions([
'setShowLogin',
]),
<button @click="setShowLogin(true)">登录</button>
方式3
将this.isLogin()
映射为this.$store.dispatch('setShowLogin')
...mapActions({
isLogin:'setShowLogin',
}),
<button @click="isLogin(true)">登录</button>
或
this.isLogin(true)
mapMutations传参
方式1
this.$store.commit('SET_SHOW_LOGIN', true)
其他传参方法基本与mapActions相同
如有问题,请联系作者,及时纠正
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。