vue get div height

<div class="top" ref="top">

mounted () {
    
    
  let topHeight = this.$refs.top.offsetHeight // 头部高度
  console.log(topHeight)
}

Guess you like

Origin blog.csdn.net/yuyu_2019/article/details/112979108