我需要有一个元素表的自定义表头(标题 + svg + 工具提示)。我试图在没有运气的情况下使用“render-header”功能。更具体地说-如何为每列打印标签+ SVG(悬停时带有工具提示)?
html:
<el-table-column property="name" label="Indicator" :render-header="appendTip">
</el-table-column>
脚本:
appendTip(h, { column }) {
return h(
"el-tooltip",
{
attrs: {
effect: "dark",
content: "Test",
placement: "top"
}
},
[h("el-button", ["Tooltip"])]
);
谢谢。