不显示111222
父组件
<comInfo content="111222"></comInfo>
子组件js
Component({
properties: {
content:{
type: String,
value: ''
}
},
lifetimes:{
attached(){
var that = this
// setTimeout(()=>{
// that.setData({
// content: wx.getStorageSync('bottomInfo')
// })
// },2000)
}
},
data: {
},
子组件视图
<view class="info">
<text style="text-align: center;">{{content}}</text>
</view>
您好,想问下问题解决了吗,如何解决的?困扰我两天了
json里面引用组件了么