interface.ts 295 B

123456789101112
  1. import type { IContextMenuItem } from '@vben-core/shadcn-ui';
  2. import type { TabItem } from '@vben-core/typings';
  3. interface TabsProps {
  4. maxWidth?: number;
  5. menus?: (data: any) => IContextMenuItem[];
  6. minWidth?: number;
  7. showIcon?: boolean;
  8. tabs?: TabItem[];
  9. }
  10. export type { TabsProps };