2020-07-02 07:05:23 +00:00
|
|
|
import ColorPicker from './ColorPicker';
|
|
|
|
/* istanbul ignore next */
|
2021-06-23 15:08:16 +00:00
|
|
|
ColorPicker.install = function (app) {
|
2020-07-25 14:00:10 +00:00
|
|
|
app.component(ColorPicker.name, ColorPicker);
|
2020-10-13 11:14:56 +00:00
|
|
|
return app;
|
2020-07-02 07:05:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default ColorPicker;
|