mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 12:48:04 +08:00
176bc652ea
* refactor(components): [carousel] refactor * fix: build error
15 lines
386 B
TypeScript
15 lines
386 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils'
|
|
import Carousel from './src/carousel.vue'
|
|
import CarouselItem from './src/carousel-item.vue'
|
|
|
|
export const ElCarousel = withInstall(Carousel, {
|
|
CarouselItem,
|
|
})
|
|
|
|
export default ElCarousel
|
|
|
|
export const ElCarouselItem = withNoopInstall(CarouselItem)
|
|
|
|
export * from './src/carousel'
|
|
export * from './src/carousel-item'
|