Element 选中高亮显示
项目中封装的table组件没有点击某行高亮显示 。
在我要写的页面使用element中的highlight-current-row
属性可以实现单选效果。
<Table
:columns="columns"
:tableData="tableData"
highlight-current-row // 这个是高亮度的属性
>
</Table>
设置 css 样式
的样式
.el-table__body tr.current-row>td{
background-color: rgb(3, 44, 61)!important; // 设置高亮的背景颜色
color:#fff;// 设置字体的颜色
}
可以实现点击高亮显示