vue store 存储 dispatch 和 commit的区别

dispatch: 含有异步操做 存储:javascript this.$store.dispatch('initUserInfo',friend); 取值:java this.$store.getters.userInfo; commit:同步操做 存储:web this.$store.commit('initUserInfo',friend); 取值:异步 this.$store.state.
相关文章
相关标签/搜索