There was an error while loading. Please reload this page.
1 parent b91709e commit 823229eCopy full SHA for 823229e
components/table/Table.tsx
@@ -654,17 +654,14 @@ const Table = defineComponent({
654
summary?: any;
655
expandedRowRender?: any;
656
expandColumnTitle?: any;
657
- bodyCell?: {
+ bodyCell?: (props: {
658
text: any;
659
value: any;
660
record: Record<string, any>;
661
index: number;
662
column: ColumnType;
663
- };
664
- headerCell?: {
665
- title: any;
666
- column: ColumnType;
667
+ }) => void;
+ headerCell?: (props: { title: any; column: ColumnType }) => void;
668
customFilterIcon?: any;
669
customFilterDropdown?: any;
670
default: any;
0 commit comments