vuex 中在一个action方法中调用另一个action方法
在另外一个 action 中也可以:actions: {// ...actionB ({ dispatch, commit }) {return dispatch('actionA').then(() => {commit('someOtherMutation')})}}
·
在另外一个 action 中也可以:
actions: {
// ...
actionB ({ dispatch, commit }) {
return dispatch('actionA').then(() => {
commit('someOtherMutation')
})
}
}
更多推荐
已为社区贡献5条内容
所有评论(0)