Home > Q&A > body text
父组件 <father :data="data"></father> data() { return { data: {} } } mounted() { this.data = { title: '标题' } } 子组件 <son>{{data.title}}<son> props: { data: Object, } 报错: title属性 undefined
巴扎黑2017-07-05 10:40:07
<son v-if="data">{{data.title}}<son>
世界只因有你2017-07-05 10:40:07
Your initial data should be given the title attribute
大家讲道理2017-07-05 10:40:07
The writing method is no problem, https://jsfiddle.net/stardew/...