美文网首页
vue store 存储 dispatch 和 commit的区

vue store 存储 dispatch 和 commit的区

作者: xukuangbo_ | 来源:发表于2019-05-23 10:16 被阅读0次

dispatch: 含有异步操作

存储:

this.$store.dispatch('initUserInfo',friend);

取值:

this.$store.getters.userInfo;

commit:同步操作

存储:

this.$store.commit('initUserInfo',friend);

取值:

this.$store.state.userInfo;

相关文章

网友评论

      本文标题:vue store 存储 dispatch 和 commit的区

      本文链接:https://www.haomeiwen.com/subject/tizmzqtx.html