chore: export and install tooltip

This commit is contained in:
Sagi 2022-09-30 15:24:19 +08:00
parent 0ad5b7ae30
commit 867b33bb8e
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import type { App } from 'vue';
import Tooltip from './src/tooltip.component';
export * from './src/tooltip.props';
export { Tooltip };
export default {
install(app: App): void {
app.component(Tooltip.name, Tooltip);
}
};