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