欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

elementui table表格 点击行实现高亮

程序员文章站 2022-03-04 11:35:11
...

记得要将 highlight-current-row 高亮属性打开

<template>
  <el-table
	highlight-current-row
    :data="table1"
	:row-style="{height: '20px'}"
	:header-cell-style="{background:'#e6e6e6',color:'#000000'}"
    border
    style="width: 30%;">
    <el-table-column
      prop="date"
      label="选择一级分类"
      width="125">
    </el-table-column>
  </el-table>
</template>

利用css改变选择的行背景颜色,字体颜色…

<style>
/* 设置当前页面elementui table 选中行时的背景色*/
.el-table__body tr.current-row>td{
 	background-color: #ebf0f1 !important;
  	color: #000000;
  	font-weight: 700;
}
</style>
相关标签: elementui vue.js

上一篇: Optional

下一篇: java8 Optional用法