mirror of https://github.com/ElemeFE/element
11 lines
280 B
JavaScript
11 lines
280 B
JavaScript
![]() |
import ElCarousel from './src/main';
|
||
|
import ElCarouselItem from './src/item';
|
||
|
|
||
|
/* istanbul ignore next */
|
||
|
export default function(Vue) {
|
||
|
Vue.component(ElCarousel.name, ElCarousel);
|
||
|
Vue.component(ElCarouselItem.name, ElCarouselItem);
|
||
|
};
|
||
|
|
||
|
export { ElCarousel, ElCarouselItem };
|