mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
14 lines
372 B
TypeScript
14 lines
372 B
TypeScript
import ColorPicker from './src/index.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils-v2'
|
|
|
|
ColorPicker.install = (app: App): void => {
|
|
app.component(ColorPicker.name, ColorPicker)
|
|
}
|
|
|
|
const _ColorPicker = ColorPicker as SFCWithInstall<typeof ColorPicker>
|
|
|
|
export default _ColorPicker
|
|
export const ElColorPicker = _ColorPicker
|