[vue日志]vue store 存储 dispatch 和 commit的区别

dispatch: 含有异步操作

存储:

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

取值:

this.$store.getters.userInfo;

commit:同步操作

存储:

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

取值:

this.$store.state.userInfo;

猜你喜欢

转载自blog.csdn.net/u013034585/article/details/106062521