样式: &_element-plus中el-table加上分隔线">
赞
踩
需求:每隔4个列添加一个竖线分割
结构:
<!-- 给某个td里面添加类名:cell-class-name -->
<el-table
:data="dataList"
size="mini"
border
@selection-change="selectionChangeHandle"
:cell-class-name="addSeparate"
>
</el-table>
样式:
<style>
/* 不能写scoped,否侧会不生效 */
.separator-border {
border-right: 1px solid #eeeff2!important;
}
</style>
addSeparate(row) {
if (row.columnIndex % 4 == 0) {
return "separator-border"
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。