Component({
// 父传子属性
properties: {
pageName: {
type: String,
value: "mpmatchinfo"
},
mid: Number
},
// 私有数据
data: {},
methods: {},
lifetimes: {
ready: function() {
console.log(this.data)
}
}
})
使用起来正常,但是这打印内容为什么这样,如果打印 this.data.mid ,得到的就是0