You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
626 B
16 lines
626 B
import '../../utils/index.mjs';
|
|
import Carousel from './src/carousel2.mjs';
|
|
import CarouselItem from './src/carousel-item2.mjs';
|
|
export { carouselEmits, carouselProps } from './src/carousel.mjs';
|
|
export { carouselItemProps } from './src/carousel-item.mjs';
|
|
export { CAROUSEL_ITEM_NAME, carouselContextKey } from './src/constants.mjs';
|
|
import { withInstall, withNoopInstall } from '../../utils/vue/install.mjs';
|
|
|
|
const ElCarousel = withInstall(Carousel, {
|
|
CarouselItem
|
|
});
|
|
const ElCarouselItem = withNoopInstall(CarouselItem);
|
|
|
|
export { ElCarousel, ElCarouselItem, ElCarousel as default };
|
|
//# sourceMappingURL=index.mjs.map
|