...mapState(['city']) 啥意思
来源:8-10 Vue项目城市选择页 - Vuex的高级使用及localStorage
smy117
2018-09-10
写回答
2回答
-
张小颠001
2018-11-17
可能意思就是: computed: {
city () {
return this.$store.state.city
}
}
10 -
慕粉0541313318
2018-09-13
意思是: 把 store 的state 里面的city 映射到当前组件的本地变量city,然后在当前组件中使用的时候,直接 this.city 这样使用就可以了。而不需要 store.state.city 这样写了
012019-03-01
相似问题