vue学习之路 —— store存储 commit和dispatch

this.$store.commit(method, value);
this.$store.dispatch(method,value)

主要区别是:

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

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

posted @ 2019-07-09 16:09  红眼睛的兔子  阅读(4190)  评论(0编辑  收藏  举报