[vue.js]解决子组件无法获取父组件store中的值的问题
子组件的参数值如何随着父组件store中参数值的变化而变化
·
子组件:
props:['myDetail']
父组件:
<子组件 :myDetail="detail"></子组件>
computed:{
detail(){
return this.$store.state.XXXX.yyyy
}
}
子组件的参数值不会随着父组件store中参数值的改变而改变
修改为
父组件:
data:{
detail:{}
}
methods:{
reloadDetail(){
this.detail=JSON.parse(JSON.stringify(this.$store.state.XXXX.yyyy));
}
}
调用reloadDetail方法,以及必须加上JSON.parse(JSON.stringify())方法,子组件的值才会随着父组件参数值的变化而变化
更多推荐
已为社区贡献2条内容
所有评论(0)