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