VUEX中的dispatch()和commit()
Posted donglt-5211
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUEX中的dispatch()和commit()相关的知识,希望对你有一定的参考价值。
commit: 同步操作
存储
this.$store.commit(‘changeValue‘,name)
取值
this.$store.state.changeValue
dispatch: 异步操作
存储
this.$store.dispatch(‘getlists‘,name)
取值
this.$store.getters.getlists
以上是关于VUEX中的dispatch()和commit()的主要内容,如果未能解决你的问题,请参考以下文章
vuex 中dispatch 和 commit 的用法和区别
在vue2.0中用dispatch和commit来调用mutations有啥区别