// 接收父组件传过来的信息(评论内容)
props: {
item: {
type: Object, //item为对象类型 item.user_id[0]._id==this.dengluzheID
default () {
return {
}
}
},
dengluzheID: {
type: String, //字符串类型 加上这句就报错,不知道为啥
default: ""//这里默认要这样写成空字符串,而不是下方注释掉的那样,返回个空对象
// default () {
// return {
// }
// }
}
},