UNPKG

fun-tab

Version:

A mobile touch-swappable tabs component for Vue3

17 lines (14 loc) 517 B
import FunTabBar from './tab-bar.js'; export { default as FunTabBar } from './tab-bar.js'; import FunTabItem from './tab-item.js'; export { default as FunTabItem } from './tab-item.js'; import FunTabs from './tabs.js'; export { default as FunTabs } from './tabs.js'; const install = (app) => { app.component(FunTabs.name, FunTabs); app.component(FunTabItem.name, FunTabItem); app.component(FunTabBar.name, FunTabBar); }; var index = { install }; export { index as default }; //# sourceMappingURL=index.js.map