2020-07-02 07:05:23 +00:00
|
|
|
import ColorPicker from './ColorPicker';
|
|
|
|
/* istanbul ignore next */
|
2020-07-25 14:00:10 +00:00
|
|
|
ColorPicker.install = function(app) {
|
|
|
|
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;
|