renderHeader: function (h, { column }) {
return h(
"span",
{
slot: "content",
class: "table-header-flex",
},
[
h(
"el-tooltip",
{
props: {
placement: "top",
},
},
[
h(
"div",
{
slot: "content",
style: {
whiteSpace: "normal",
},
},
column.label
),
h(
"span",
{
style: {
whiteSpace: "normal",
// overflow: "hidden",
"text-overflow": "ellipsis",
"white-space": "nowrap",
"max-width": "100%",
display: "inline-block",
},
},
column.label
),
]
),
]
);
},
标签:slot,style,span,column,label,content,xtable,提示框,划上 From: https://blog.csdn.net/weixin_55963134/article/details/143856113