element-plus/packages/switch/index.ts

12 lines
285 B
TypeScript
Raw Normal View History

import { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
import Switch from './src/index.vue'
2020-10-29 17:28:26 +08:00
Switch.install = (app: App): void => {
app.component(Switch.name, Switch)
}
2020-10-29 17:28:26 +08:00
const _Switch: SFCWithInstall<typeof Switch> = Switch
export default _Switch