fix: table slot type optimization (#7288)
parent
ad8d32ab09
commit
a80ca17461
|
@ -654,17 +654,14 @@ const Table = defineComponent({
|
||||||
summary?: any;
|
summary?: any;
|
||||||
expandedRowRender?: any;
|
expandedRowRender?: any;
|
||||||
expandColumnTitle?: any;
|
expandColumnTitle?: any;
|
||||||
bodyCell?: {
|
bodyCell?: (props: {
|
||||||
text: any;
|
text: any;
|
||||||
value: any;
|
value: any;
|
||||||
record: Record<string, any>;
|
record: Record<string, any>;
|
||||||
index: number;
|
index: number;
|
||||||
column: ColumnType;
|
column: ColumnType;
|
||||||
};
|
}) => void;
|
||||||
headerCell?: {
|
headerCell?: (props: { title: any; column: ColumnType }) => void;
|
||||||
title: any;
|
|
||||||
column: ColumnType;
|
|
||||||
};
|
|
||||||
customFilterIcon?: any;
|
customFilterIcon?: any;
|
||||||
customFilterDropdown?: any;
|
customFilterDropdown?: any;
|
||||||
default: any;
|
default: any;
|
||||||
|
|
Loading…
Reference in New Issue