vue store存储commit 和dispatch的区别
dispatch:含有异步操作,存储:this.$store.dispatch('setTargetUser',friend);取值:this.$store.getters.targetUser;commit:同步操作,存储:this.$store.commit('setTargetUser',friend);取值:this.$store.state.s...
·
dispatch:含有异步操作,
存储:
this.$store.dispatch('setTargetUser',friend);
取值:
this.$store.getters.targetUser;
commit:同步操作,
存储:
this.$store.commit('setTargetUser',friend);
取值:
this.$store.state.setTargetUser
更多推荐
已为社区贡献39条内容
所有评论(0)