给el-table表头添加图标/图片,鼠标移入图片时显示el-tooltip提示内容

249 阅读1分钟

需求: 当鼠标移动到“影响”的 旁边图标时,弹出提示“xxxxxx”,鼠标移开该提示语消失。

image.png

367D1CD9F545413B7C399473241E7F51.jpg

<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>