We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2994c8 commit d41d7a6Copy full SHA for d41d7a6
components/table/context.ts
@@ -12,7 +12,7 @@ export type ContextSlots = {
12
customFilterIcon?: (...args: any[]) => any;
13
customFilterDropdown?: (...args: any[]) => any;
14
// 兼容 2.x 的 columns slots 配置
15
- [key: string]: (...args: any[]) => any;
+ [key: string]: ((...args: any[]) => any) | undefined;
16
};
17
18
export type ContextProps = ComputedRef<ContextSlots>;
0 commit comments