rex 60453083b3
feat(Tab): add new prop lazyRender & improve performance (#2328)
Tab

add new prop lazyRender
improve performace
Sticky

add new prop container
2019-11-18 21:15:20 +08:00

14 lines
200 B
JavaScript

import Page from '../../common/page';
Page({
data: {
container: null
},
onReady() {
this.setData({
container: () => wx.createSelectorQuery().select('#container')
});
}
});