我想在突变完成它的工作后执行一个动作。
突变(SOME_MUTATION
)来自同一个商店,动作(test/testAction
)来自一个模块
someAction(context, data) {
context.commit('SOME_MUTATION', data) // this should be committed first
context.dispatch('test/testAction') // this action should be dispatched after the above commit
}
注意:我不知道这是否是默认行为