farris-vue/packages/ui-vue/components/switch/index.ts

13 lines
235 B
TypeScript

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