600字范文,内容丰富有趣,生活中的好帮手!
600字范文 > elementui表格宽度适应内容_element ui 表格高度自适应

elementui表格宽度适应内容_element ui 表格高度自适应

时间:2022-11-05 18:04:12

相关推荐

elementui表格宽度适应内容_element ui 表格高度自适应

首先给表格初始一个高度

tableHeight: (window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight) - 240

监听浏览器窗口变化

window.onresize = () => {

let tableHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;

this.tableHeight = tableHeight - 240;

}

在watch中监听高度的变化

watch: {

// 这里的定时器是为了优化,如果频繁调用window.onresize方法会造成页面卡顿,增加定时器会避免频繁调用window.onresize方法

tableHeight(val) {

if (!this.timer) {

this.tableHeight = val

this.timer = true

const that = this

setTimeout(function() {

that.timer = false

}, 400)

}

}

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。