feat: initial commit - Phase 1 & 2 core features

This commit is contained in:
hiderfong
2026-04-22 17:07:33 +08:00
commit 1773bda06b
25005 changed files with 6252106 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { withInstall, withNoopInstall } from "../../utils/vue/install.mjs";
import { tabsRootContextKey } from "./src/constants.mjs";
import { tabBarProps } from "./src/tab-bar.mjs";
import { tabNavEmits, tabNavProps } from "./src/tab-nav.mjs";
import Tabs, { tabsEmits, tabsProps } from "./src/tabs.mjs";
import { tabPaneProps } from "./src/tab-pane.mjs";
import tab_pane_default from "./src/tab-pane2.mjs";
//#region ../../packages/components/tabs/index.ts
const ElTabs = withInstall(Tabs, { TabPane: tab_pane_default });
const ElTabPane = withNoopInstall(tab_pane_default);
//#endregion
export { ElTabPane, ElTabs, ElTabs as default, tabBarProps, tabNavEmits, tabNavProps, tabPaneProps, tabsEmits, tabsProps, tabsRootContextKey };
//# sourceMappingURL=index.mjs.map