commit
dispatch
在store js文件中定义
.//设置
//获取 --- 注意得在HTML中显示变量
this.$store.commit(‘toShowLoginDialog‘, true);
this.$store.dispatch(‘toShowLoginDialog‘,false)
主要区别是:
dispatch:含有异步操作,例如向后台提交数据,写法: this.$store.dispatch(‘mutations方法名‘,值)
commit:同步操作,写法:this.$store.commit(‘mutations方法名‘,值)
---------------------
作者:qq_36165747
来源:CSDN
原文:https://blog.csdn.net/qq_36165747/article/details/81082963
版权声明:本文为博主原创文章,转载请附上博文链接!
原文:https://www.cnblogs.com/Quxiya/p/10820274.html