ly-tab
Version:
A better mobile touch-swappable reusable component for vue2.*
14 lines (10 loc) • 333 B
JavaScript
import LyTabBar from './tab-bar.vue';
import LyTabItem from './tab-item.vue';
import LyTabs from './tabs.vue';
const install = (Vue) => {
Vue.component(LyTabs.name, LyTabs);
Vue.component(LyTabItem.name, LyTabItem);
Vue.component(LyTabBar.name, LyTabBar);
};
export default { install };
export { LyTabs, LyTabBar, LyTabItem };