el-table Modify the highlight of the mouse moving in and the highlight of the selected row! ! ! Record

//选中
::v-deep .el-table__body tr.current-row > td.el-table__cell {
  background-color: skyblue;
}
//移入
::v-deep .el-table tbody tr:hover > td.el-table__cell {
  background-color: skyblue !important; //修改成自己想要的颜色即可
}
<el-table
              :data="tableData"
              highlight-current-row
              style="
                width: 100%;
                background: #052954;
                color: rgba(255, 255, 255, 0.9);
              "
            >

 

Guess you like

Origin blog.csdn.net/qq_59175937/article/details/128644198
Recommended