mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
a73dacc92b
fix #82
6 lines
139 B
TypeScript
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)
|
|
}
|