el-table取消鼠标hover行数据时的背景颜色变化

424 阅读1分钟

注意:此方法不适用于el-table有fixed="right/left"的情况

给el-table套一层div,定义一个类,再应用如下css规则。即可消除hover时的背景色

.noHoverColor  .el-table--enable-row-hover .el-table__body tr:hover>td{
  background-color: transparent !important;
}