element-plus/packages/color-picker/index.ts

12 lines
325 B
TypeScript
Raw Normal View History

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