美文网首页
vue store存储commit 和dispatch

vue store存储commit 和dispatch

作者: 骑着蜗牛撵大象 | 来源:发表于2019-11-29 15:02 被阅读0次

this.$store.commit('toShowLoginDialog', true);

this.$store.dispatch('toShowLoginDialog',false);

主要区别是:

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

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

相关文章

网友评论

      本文标题:vue store存储commit 和dispatch

      本文链接:https://www.haomeiwen.com/subject/oykgwctx.html