WGShare.Client.Wx/components/status-bar-height/index.ts

17 lines
176 B
TypeScript

Component({
properties: {
},
data: {
height: 0
},
methods: {
},
ready() {
this.setData({
height: wx.getWindowInfo().statusBarHeight
})
}
})