dispatch ,commit区别在vue store

2019-11-11 16:43:43

dispatch: 含有异步操作,commit:同步操作

dispatch: 含有异步操作

存储:

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

取值:

this.$store.getters.userInfo;

commit:同步操作

存储:

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

取值:

this.$store.state.userInfo;