Vue进阶(二十四):vue store存储commit 和dispatch

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/sunhuaqiang1/article/details/85211227
this.$store.commit('toShowLoginDialog', true);
this.$store.dispatch('toShowLoginDialog',false)

主要区别是:

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

猜你喜欢

转载自blog.csdn.net/sunhuaqiang1/article/details/85211227