vxe-pc-ui
Version:
A vue based PC component library
13 lines (12 loc) • 468 B
JavaScript
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;