Vue --自定义el-table-column头部的两种方法

第一种方法:会出现警告 [Element Warn][TableColumn]Comparing to render-header, scoped-slot header is easier to use. We recommend users to use scoped-slot header.

1.在上定义:render-header调用自定义表头方法,如图举例

2.在methods:{}方法里面自定义表头方法,如图举例

第二种方法: 使用scoped-slot(更简单且简洁无警告)

1.在上使用scoped-slot

2.