mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-05 13:48:03 +08:00
9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
|
import Carousel from './src/main';
|
||
|
|
||
|
/* istanbul ignore next */
|
||
|
Carousel.install = function(Vue) {
|
||
|
Vue.component(Carousel.name, Carousel);
|
||
|
};
|
||
|
|
||
|
export default Carousel;
|