this.$store.commit('toShowLoginDialog', true);
this.$store.dispatch('toShowLoginDialog',false)
複製程式碼
主要區別是:
dispatch:含有非同步操作,例如向後臺提交資料,寫法: this.$store.dispatch('mutations方法名',值)
commit:同步操作,寫法:this.$store.commit('mutations方法名',值)
this.$store.commit('toShowLoginDialog', true);
this.$store.dispatch('toShowLoginDialog',false)
複製程式碼
主要區別是:
dispatch:含有非同步操作,例如向後臺提交資料,寫法: this.$store.dispatch('mutations方法名',值)
commit:同步操作,寫法:this.$store.commit('mutations方法名',值)