fix: table slot type optimization (#7288)

pull/7302/head
Carl Chen 2024-01-16 20:57:29 +08:00 committed by GitHub
parent ad8d32ab09
commit a80ca17461
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 6 deletions

View File

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