需求: 当鼠标移动到“影响”的 旁边图标时,弹出提示“xxxxxx”,鼠标移开该提示语消失。
<el-table-column
prop="state">
<template slot-scope="scope" slot="header">
<span>
门锁状态 // label
<el-tooltip :aa="scope" class="item" effect="dark" content="这里指定悬浮提示文字内容" placement="top-start">
// class指定icon图标 style可以调图标颜色等样式
<i class= 'el-icon-warning' style="color:#409eff; margin-left:5px;'"> </i>
</el-tooltip>
</span>
</template>
</el-table-column>