UNPKG

vxe-pc-ui

Version:
13 lines (12 loc) 468 B
import { VxeUI } from '@vxe-ui/core'; import VxeColorPickerComponent from './src/color-picker'; import { dynamicApp } from '../dynamics'; export const VxeColorPicker = Object.assign({}, VxeColorPickerComponent, { install(app) { app.component(VxeColorPickerComponent.name, VxeColorPickerComponent); } }); dynamicApp.use(VxeColorPicker); VxeUI.component(VxeColorPickerComponent); export const ColorPicker = VxeColorPicker; export default VxeColorPicker;