mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-10 14:09:25 +00:00
fix(table):basicColumn加泛型 (#1618)
新版本ant design vue的columnProps使用了泛型,导致xxx.data.ts里面定义的BasicColumn使用customRender地方全部报错
This commit is contained in:
@@ -412,7 +412,7 @@ export type CellFormat =
|
|||||||
| Map<string | number, any>;
|
| Map<string | number, any>;
|
||||||
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
export interface BasicColumn extends ColumnProps {
|
export interface BasicColumn extends ColumnProps<Recordable> {
|
||||||
children?: BasicColumn[];
|
children?: BasicColumn[];
|
||||||
filters?: {
|
filters?: {
|
||||||
text: string;
|
text: string;
|
||||||
|
Reference in New Issue
Block a user