vue2获取访问vuex分模块的数据
1、传统方法this.$store.state['模块名']['属性名']2、mapState方法:import { mapState } from 'vuex'computed: {// ......mapState({list: state => state.city.list})}触发其他模块的action1、this.$store.dispatch('模块名/属性名', opts).
·
21、传统方法
this.$store.state['模块名']['属性名']
2、mapState方法:
import { mapState } from 'vuex'
computed: {
// ...
...mapState({
list: state => state.city.list
})
}
触发其他模块的action
1、
this.$store.dispatch('模块名/属性名', opts)
更多推荐
已为社区贡献8条内容
所有评论(0)