1234567891011121314151617 |
- import { SuperComponent, RelationsOptions } from '../common/src/index';
- export default class TabPanel extends SuperComponent {
- relations: RelationsOptions;
- properties: import("./type").TdTabPanelProps;
- data: {
- prefix: string;
- classPrefix: string;
- active: boolean;
- hide: boolean;
- };
- observers: {
- label(): void;
- };
- getComputedName(): string;
- update(): void;
- render(active: Boolean, parent: any): void;
- }
|