index.js 184 B

12345678
  1. import ColorPicker from './src/main';
  2. /* istanbul ignore next */
  3. ColorPicker.install = function(Vue) {
  4. Vue.component(ColorPicker.name, ColorPicker);
  5. };
  6. export default ColorPicker;