21 lines
293 B
JavaScript
21 lines
293 B
JavaScript
Component({
|
|
properties: {
|
|
navbarHeight: {
|
|
type: Number,
|
|
value: 0,
|
|
},
|
|
},
|
|
|
|
data: {
|
|
container: null,
|
|
},
|
|
|
|
lifetimes: {
|
|
ready: function () {
|
|
this.setData({
|
|
container: () => this.createSelectorQuery().select('.wrapper'),
|
|
});
|
|
},
|
|
},
|
|
});
|