element-plus/packages/switch/index.ts
2020-08-05 16:10:04 +08:00

6 lines
139 B
TypeScript

import { App } from 'vue'
import Switch from './src/index.vue'
export default (app: App): void => {
app.component(Switch.name, Switch)
}