elementui el-table中给表头 el-table-column 加一个鼠标移入提示说明
前言
在使用el-table 表格中有些表格的表头需要加入一些提示,鼠标移入则出现提示,非常实用,我是通过el-table中的el-tooltip实现的,以下的效果预览
代码实现
<el-table ref="multipleTable" :data="data" tooltip-effect="dark" border >
<el-table-column prop="addtime" label="时间" align="center" width="150">
<template slot="header">
<div>
<span>时间</span>
<el-tooltip class="item" effect="dark" content="今日工单是操作工单时间,其他则是工单录入时间" placement="top">
<span class="iconfont icon-wenhao" style="margin-left: 5px;"></span>
</el-tooltip>
</div>
</template>
</el-table-column>
</el-table>