赞
踩
给el-table添加滚动条时 发现el-table 表头多出 gutter 元素, 导致滚动条显示在表格之外.
添加样式
// 如果是在 .vue 局部样式 需添加 ::v-deep / /deep/ 前缀
.el-table th.gutter{
display: none;
width: 0;
}
.el-table colgroup col[name='gutter']{
display: none;
width: 0;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。