UNPKG

element-plus

Version:

A Component Library for Vue3.0

12 lines (8 loc) 325 B
import { App } from 'vue' import type { SFCWithInstall } from '@element-plus/utils/types' import ColorPicker from './src/index.vue' ColorPicker.install = (app: App): void => { app.component(ColorPicker.name, ColorPicker) } const _ColorPicker: SFCWithInstall<typeof ColorPicker> = ColorPicker export default _ColorPicker