chore: export and install tabs and tab page

This commit is contained in:
Sagi 2022-09-30 15:18:15 +08:00
parent b0add5a0a8
commit f50b1afb68
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
import type { App } from 'vue';
import Tabs from './src/tabs.component';
import TabPage from './src/components/tab-page.component';
export * from './src/tabs.props';
export * from './src/components/tab-page.props';
export { Tabs, TabPage };
export default {
install(app: App): void {
app.component(Tabs.name, Tabs);
app.component(TabPage.name, TabPage);
}
};