支援朋友,自定义 elementui 的 table 合计行的单元格内容,需要插入一些元素
js
sums[index] = this.$createElement(
'span',
{
attrs: {
id: 'test',
},
style: {
color: 'red',
},
class: 'test',
on: {
click: this.test,
},
},
[
this.$createElement(
'i',
{
style: {
color: 'blue',
},
class: 'test',
on: {
click: this.test,
},
},
'你要的图标'
),
'xxx',
]
);