Table: update Table sortable type (#15253)

This commit is contained in:
theWorkFsz 2019-05-07 12:23:41 +08:00 committed by hetech
parent 59311aa729
commit d8002ccb07

View File

@ -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