vue store儲存commit 和dispatch

天生不是寵兒發表於2018-12-18
this.$store.commit('toShowLoginDialog', true);
this.$store.dispatch('toShowLoginDialog',false)
複製程式碼

主要區別是:

dispatch:含有非同步操作,例如向後臺提交資料,寫法: this.$store.dispatch('mutations方法名',值)

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

相關文章