父组件
<father :data="data"></father>
data() {
return {
data: {}
}
mounted() {
this.data = {
title: '标题'
子组件
<son>{{data.title}}<son>
props: {
data: Object,
报错: title属性 undefined
人到中年有点甜
相关分类