vue Element组件库<el-table> 表头添加ICON图标并悬浮提示

任务:当鼠标移动到“门锁状态”的 图标时,弹出提示“xxxxxx”,鼠标移开该提示语消失。

效果:

 

 

 

<el-table-column
prop
="commissionCharge" align="center" width="120" >   <template slot="header" slot-scope="scope">     <span>手续费       <el-tooltip         :aa="scope"         class="item"         effect="dark"         content="我们公司收"         placement="top-start"       >         <i class="el-icon-question"          style="color: #606266">
        </i>
      </el-tooltip>
    </span>   </template> </el-table-column>

 

posted on 2022-07-06 15:09  婷子逆天了  阅读(2132)  评论(0编辑  收藏  举报