element-plus
Version:
> TODO: description
14 lines (9 loc) • 375 B
text/typescript
import ColorPicker from './src/index.vue'
import type { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
ColorPicker.install = (app: App): void => {
app.component(ColorPicker.name, ColorPicker)
}
const _ColorPicker = ColorPicker as SFCWithInstall<typeof ColorPicker>
export default _ColorPicker
export const ElColorPicker = _ColorPicker