el-table-column的label插槽
时间: 2023-11-22 11:44:39 浏览: 167
excel标签插件
el-table-column的label插槽可以用来自定义表格列的标题。在使用时,需要在el-table-column标签内部使用<template slot="label">...</template>来定义插槽内容。例如:
<el-table-column prop="name">
<template slot="label">
<span>姓名</span>
<el-tooltip class="item" effect="dark" content="这是一个提示" placement="top">
<i class="el-icon-info"></i>
</el-tooltip>
</template>
</el-table-column>
阅读全文