2022-02-11 11:03:15 +08:00
|
|
|
import { withInstall, withNoopInstall } from '@element-plus/utils'
|
2022-03-17 12:21:06 +08:00
|
|
|
import Carousel from './src/carousel.vue'
|
|
|
|
import CarouselItem from './src/carousel-item.vue'
|
2021-08-24 13:36:48 +08:00
|
|
|
|
2021-09-24 19:11:56 +08:00
|
|
|
export const ElCarousel = withInstall(Carousel, {
|
|
|
|
CarouselItem,
|
|
|
|
})
|
2021-08-24 13:36:48 +08:00
|
|
|
|
2021-09-24 19:11:56 +08:00
|
|
|
export default ElCarousel
|
2021-08-24 13:36:48 +08:00
|
|
|
|
2021-09-24 19:11:56 +08:00
|
|
|
export const ElCarouselItem = withNoopInstall(CarouselItem)
|
2022-03-17 12:21:06 +08:00
|
|
|
|
|
|
|
export * from './src/carousel'
|
|
|
|
export * from './src/carousel-item'
|