chore: export and install popover component

This commit is contained in:
Sagi 2022-09-30 15:10:50 +08:00
parent f1467f8470
commit b50d76541f
1 changed files with 11 additions and 0 deletions

View File

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