commit 只可以触发同步的操作。 Mutation只支持同步操作

dispatch 则可以提交action的异步操作。 Action支持异步操作


dispatch:含有异步操作,例如向后台提交数据,写法: this.$store.dispatch('mutations方法名',值)

commit:同步操作,写法:this.$store.commit('mutations方法名',值)

相关文章: