vue3+element-plus的el-table的表头加入红色的*星号
时间: 2023-05-12 15:03:27 浏览: 449
可以通过设置 el-table-column 的 prop 属性中的 label 字段来实现表头加入红色的*星号,具体代码如下:
<el-table :data="tableData">
<el-table-column prop="name" label="姓名">
<template slot="header">
<span style="color: red">*</span>姓名
</template>
</el-table-column>
<el-table-column prop="age" label="年龄"></el-table-column>
</el-table>
在表头的 label 字段中加入红色的*星号,并使用 slot="header" 来自定义表头的内容,这样就可以实现表头加入红色的*星号的效果了。
阅读全文