mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 20:18:22 +08:00
9 lines
201 B
JavaScript
9 lines
201 B
JavaScript
import ColorPicker from './ColorPicker';
|
|
/* istanbul ignore next */
|
|
ColorPicker.install = function (app) {
|
|
app.component(ColorPicker.name, ColorPicker);
|
|
return app;
|
|
};
|
|
|
|
export default ColorPicker;
|