chore: export and install switch component

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

View File

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