https://markdowner.net/article/166272088981004288

vue dispatch

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

  1. 组件通过 dispatch操作异步
  2. 在 dispatch里面,再调用 commit同步修改 store

dispatch 对应 redux的 dispatch

vue commit

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

commit对应 redux-saga的 put操作