Files
MiniProgram/ProjectLiaisonForm/pages/sticky/container/index.js
2025-08-15 14:05:08 +08:00

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'),
});
},
},
});