图例
代码
<el-table-columnwidth="180"><templateslot="header"slot-scope="scope">销售提成<el-tooltipeffect="dark"content="若销售提成按“百分比”,则根据“活动价”来计算"placement="top"><iclass="el-icon-info"></i></el-tooltip></template><templateslot-scope="scope"> ... </template></el-table-column>
说明
Element UI 提供了一个 render-head 方法,这个我试过了,不好使,不管怎样,结构都是只显示 tooltip 的边框,不显示 tooltip 的背景,查了很多资料,发现 Element UI 还有一个方法自定义表头,自定义表头里面提到使用 Scoped Slot 方法来重置表头,最后,根据这个方法,解决了表头添加 tootip 的问题
Ps:扩展,类似的方法还有很多,比如:表头添加图标类,添加输入框,添加选择框的, 都可以使用这个方法~