获取自定义组件的某个节点的高度
const query = wx.createSelectorQuery().in(this)
query.select('#chat').boundingClientRect(function(res){
res.top // 这个组件内 #the-id 节点的上边界坐标
}).exec()
这个方法怎么用
引用组件的页面 需要获取这个 组件的某个检点的高度 不知怎么操作了