You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
609 B

1 month ago
  1. import Tabs from './src/tabs.mjs';
  2. export { tabsEmits, tabsProps } from './src/tabs.mjs';
  3. import TabPane from './src/tab-pane2.mjs';
  4. export { tabBarProps } from './src/tab-bar2.mjs';
  5. export { tabNavEmits, tabNavProps } from './src/tab-nav.mjs';
  6. export { tabPaneProps } from './src/tab-pane.mjs';
  7. export { tabsRootContextKey } from './src/constants.mjs';
  8. import { withInstall, withNoopInstall } from '../../utils/vue/install.mjs';
  9. const ElTabs = withInstall(Tabs, {
  10. TabPane
  11. });
  12. const ElTabPane = withNoopInstall(TabPane);
  13. export { ElTabPane, ElTabs, ElTabs as default };
  14. //# sourceMappingURL=index.mjs.map