Commit d2d5eca64bfadc6d9b29ff85aedef0e8034a3b18

Authored by yangd
1 parent ca928d83

修复表格排序属性的类型

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
types/table.d.ts
... ... @@ -242,7 +242,7 @@ export declare interface TableColumn {
242 242 * 需要监听 Table 的 on- sort - change 事件,默认false
243 243 * @default false
244 244 */
245   - sortable?: boolean;
  245 + sortable?: boolean | 'custom';
246 246 /**
247 247 * 自定义排序使用的方法,接收三个参数 a 、 b 和 type,
248 248 * 当设置 sortable?: true 时有效。type 值为 asc 和 desc
... ...