<template>
...
<el-table :height="tableHeight"></el-table>
...
</template>
<script>
...
mounted() {
this.$nextTick(() => {
let h =
window.innerHeight ||
document.documentElement.clientHeight ||
document.body.clientHeight;
this.tableHeight = h - 380;
});
},
...
</script>









网友评论