element-plus/packages/switch/index.ts

6 lines
139 B
TypeScript
Raw Normal View History

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