el-table 下划线颜色
时间: 2023-11-07 19:03:53 浏览: 196
去掉<a>的下划线与设置<a>的颜色
el-table 下划线颜色可以通过添加CSS样式来实现。你可以在style中添加以下样式来设置下划线颜色:
```css
.red-border-bottom {
border-bottom: 1px solid red;
}
```
然后,在el-table中的cell-class-name属性中调用cellClassName方法,并在该方法中根据条件返回red-border-bottom类名。例如:
```javascript
cellClassName({ row, column, rowIndex, columnIndex }) {
if (row.Flag === '1') {
return 'red-border-bottom';
}
},
```
这样就可以实现el-table下划线的颜色为红色。
阅读全文