Skip to content

Commit

Permalink
Table: column header can be costumed (ElemeFE#17291)
Browse files Browse the repository at this point in the history
  • Loading branch information
ziyoung authored and zihe-xu committed Jun 27, 2020
1 parent 8b15b83 commit 2b41880
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/table/src/table-column.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,10 @@ export default {
},

setColumnRenders(column) {
const specialTypes = Object.keys(cellForced);
// renderHeader 属性不推荐使用。
if (this.renderHeader) {
console.warn('[Element Warn][TableColumn]Comparing to render-header, scoped-slot header is easier to use. We recommend users to use scoped-slot header.');
} else if (specialTypes.indexOf(column.type) === -1) {
} else if (column.type !== 'selection') {
column.renderHeader = (h, scope) => {
const renderHeader = this.$scopedSlots.header;
return renderHeader ? renderHeader(scope) : column.label;
Expand Down

0 comments on commit 2b41880

Please sign in to comment.