子组件 props['myDetail']


父组件

computed:{
detail(){
return this.$store.state.XXXX.yyyy
}
}

<子组件 :myDetail="detail"></子组件>

然而当store里的值改变,子组件的值并不会改变

应修改为

父组件

data:{
detail:{}
}
methods:{
reloadDetail(){
this.detail = JSON.parse(JSON.stringify(this.$store.stat.XXXX.yyyy));
}
}

这样子组件的值就会随着父组件的值改变而改变



Logo

前往低代码交流专区

更多推荐