element-plus/packages/switch/index.ts

9 lines
159 B
TypeScript
Raw Normal View History

import { App } from 'vue'
import Switch from './src/index.vue'
2020-10-29 17:28:26 +08:00
export default (app: App): void => {
app.component(Switch.name, Switch)
}
2020-10-29 17:28:26 +08:00
export { Switch }