Browse Source

Table: update Table sortable type (#15253)

theWorkFsz 6 năm trước cách đây
mục cha
commit
d8002ccb07
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      types/table-column.d.ts

+ 1 - 1
types/table-column.d.ts

@@ -65,7 +65,7 @@ export declare class ElTableColumn extends ElementUIComponent {
   renderHeader: (h: CreateElement, data: RenderHeaderData) => VNode | string
 
   /** Whether column can be sorted */
-  sortable: boolean
+  sortable: boolean | 'custom'
 
   /** Sorting method. Works when `sortable` is `true` */
   sortMethod: (a: any, b: any) => number