共计 201 个字符,预计需要花费 1 分钟才能阅读完成。
起因:子组件接管到了,然而在 data 中间接赋值没用,要在子组件中应用 watch 监听
props: ['data'],
data () {
return {subData: ''}
},
...
watch: {data () {this.subData = this.data}
}
watch 在这里的作用是监听 props 中的值变动时将其赋给 data 中的值
原文:https://www.jianshu.com/p/14fcaa68e499
正文完