chore: export and install tabs and tab page
This commit is contained in:
parent
b0add5a0a8
commit
f50b1afb68
|
@ -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);
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue