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