vuex 的使用问题
如何将 vuex
中的 state
同步到 vue
的 data
中,例如:
// 当 addressState 有更新,自动绑定到 address 对象上data(){
return {
address:{}
}
},
computed: {
...mapState({
addressState: (state) => state.population.address,
}),
},
回答:
那就暴力的watch吧
watch: { 'store.state.xxx'(newValue) {
this.address.xxx = newValue
}
}
注意别把引用类型到处传来传去就行
回答:
https://jsbin.com/nitoteludi/...,output
以上是 vuex 的使用问题 的全部内容, 来源链接: utcz.com/p/935900.html