vue 获取el-table的高度
时间: 2023-11-11 08:00:09 浏览: 228
VUE2.0 ElementUI2.0表格el-table自适应高度的实现方法
5星 · 资源好评率100%
可以通过 $refs 获取 el-table 的 DOM 元素,然后使用 offsetHeight 属性获取高度。示例代码如下:
```
<template>
<el-table ref="table"></el-table>
</template>
<script>
export default {
mounted() {
const tableHeight = this.$refs.table.$el.offsetHeight;
console.log(tableHeight);
}
}
</script>
```
阅读全文