Skip to content

Commit

Permalink
fix: table slot type optimization (vueComponent#7288)
Browse files Browse the repository at this point in the history
  • Loading branch information
cc-hearts authored Jan 16, 2024
1 parent ad8d32a commit a80ca17
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions components/table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a80ca17

Please sign in to comment.