首页 前端知识 el-table 高亮显示选中的行(element-ui)

el-table 高亮显示选中的行(element-ui)

2024-01-26 10:01:09 前端知识 前端哥 13 805 我要收藏

el-table 高亮显示选中的行(element-ui)


解决措施: 只需要配置 highlight-current-row 属性即可

选择单行数据时使用色块表示。

Table 组件提供了单选的支持, 只需要配置 highlight-current-row 属性即可实现单选。 之后由 current-change 事件来管理选中时触发的事件,它会传入 currentRow,oldCurrentRow。 如果需要显示索引,可以增加一列 el-table-column,设置 type 属性为 index 即可显示从 1 开始的索引号。

在这里插入图片描述

<!-- 图像列表显示 -->
<el-table :data="imgNameList" height="650" style="width:100%" 	@row-click="imgSelected"  highlight-current-row>
   <el-table-column prop="index" label="id" width="50px"></el-table-column>
   <el-table-column prop="imgName" label="图像名称" width="150px" ></el-table-column>
</el-table>

在这里插入图片描述

转载请注明出处或者链接地址:https://www.qianduange.cn//article/445.html
评论
发布的文章

CSS3新增样式

2024-02-05 11:02:24

jQuery的介绍

2024-02-05 11:02:21

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!