project init

This commit is contained in:
limqhz
2022-11-10 17:13:00 +08:00
commit 4956ed2f1f
113 changed files with 3617 additions and 0 deletions

28
components/tab-bar/tab-bar-item.d.ts vendored Normal file
View File

@@ -0,0 +1,28 @@
import { SuperComponent, RelationsOptions } from '../common/src/index';
export default class TabbarItem extends SuperComponent {
parent: any;
relations: RelationsOptions;
options: {
multipleSlots: boolean;
};
data: {
prefix: string;
classPrefix: string;
isSpread: boolean;
isChecked: boolean;
hasChildren: boolean;
currentName: string;
split: boolean;
};
properties: import("./type").TdTabBarItemProps;
observers: {
subTabBar(value: Record<string, any>[]): void;
};
methods: {
showSpread(): void;
toggle(): void;
selectChild(event: any): void;
checkActive(value: any): void;
closeSpread(): void;
};
}