_index.js 280 B

12345678910
  1. import ElCarousel from './src/main';
  2. import ElCarouselItem from './src/item';
  3. /* istanbul ignore next */
  4. export default function(Vue) {
  5. Vue.component(ElCarousel.name, ElCarousel);
  6. Vue.component(ElCarouselItem.name, ElCarouselItem);
  7. };
  8. export { ElCarousel, ElCarouselItem };