0


vue3 使用ref 获取 dom 元素的高度

代码实现:

<template>
  <div ref="mains" class="search"></div>
</template>

<script setup lang="ts">
import { ref, onMounted } from 'vue'
const mains = ref()

onMounted(() => {
  const height = mains.value.clientHeight
  console.log(height, 1234)
})
</script>

<style scoped lang="less">
.search {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background-color: greenyellow;
}
</style>

输出结果:


本文转载自: https://blog.csdn.net/qq_44694453/article/details/129030752
版权归原作者 开开酷酷 所有, 如有侵权,请联系我们删除。

“vue3 使用ref 获取 dom 元素的高度”的评论:

还没有评论