tab-bar-item.d.ts 762 B

123456789101112131415161718192021222324252627
  1. import { SuperComponent, RelationsOptions } from '../common/src/index';
  2. export default class TabbarItem extends SuperComponent {
  3. relations: RelationsOptions;
  4. data: {
  5. prefix: string;
  6. classPrefix: string;
  7. isSpread: boolean;
  8. isChecked: boolean;
  9. parent: any;
  10. hasChildren: boolean;
  11. currentName: string;
  12. color: string;
  13. activeColor: string;
  14. split: boolean;
  15. };
  16. properties: import("./type").TdTabBarItemProps;
  17. observers: {
  18. subTabBar(value: Record<string, any>[]): void;
  19. };
  20. methods: {
  21. showSpread(): void;
  22. toggle(): void;
  23. selectChild(event: any): void;
  24. checkActive(value: any): boolean;
  25. closeSpread(): void;
  26. };
  27. }