vue表格出现竖向滚动条之后表格竖线对不齐
表格出现竖向滚动条之后表格竖线对不齐
//首先在表头定义ref <el-table v-loading="loading" ref="ElTableHeaderRef" :data="industrialList" fit highlight-current-row style="width: 100%" :header-cell-style="{ background: '#eef1f6', color: '#606266' }" border height="64vh"> //在获取表格数据的时候加上重新布局 this.$nextTick(() => { if (this.$refs.ElTableHeaderRef && this.$refs.ElTableHeaderRef.doLayout) { this.$refs.ElTableHeaderRef.doLayout() } })
本文来自博客园,作者:prince11,转载请注明原文链接:https://www.cnblogs.com/prince11/p/18336696