vuex 中的 dispatch 和 commit 的使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vuex 中的 dispatch 和 commit 的使用相关的知识,希望对你有一定的参考价值。
参考技术A dispatch 异步操作 this.$store.dispatch(‘actions的方法’,arg); 调用 actions 里面的方法。commit 同步操作 this.$store.commit(‘mutations的方法’,arg);调用 mutations 里面的方法。
以上是关于vuex 中的 dispatch 和 commit 的使用的主要内容,如果未能解决你的问题,请参考以下文章
vuex 中dispatch 和 commit 的用法和区别
在vue2.0中用dispatch和commit来调用mutations有啥区别