1.el-table中使用 highlight-current-row 属性
<el-table ref='multipleTable' :data="dataList" highlight-current-row></el-table>
2.改变默认的高亮的颜色。设置el-table的高亮颜色。
<style lang="scss">
::v-deep .el-table__body tr.current-row > td {
background: #21af73 !important;
color: #ffffff !important;
}
</style>