比如有个view元素如下
<view style="height:100px;width:100%;background:black;" res="topbox"></view>
可以这样获取
getRefs(){
let that = this
return new Promise((resolve,reject)=>{
resolve(that.$refs)
})
}
that.getRefs().then(res=>{
that.top_height = res.topbox.$el.offsetHeight
})
以上是uniapp中封装过的元素,比如view
如果是传统html元素,获取如下
this.$refs.topbox.offsetHeight