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.

14 lines
594 B

1 month ago
  1. import Carousel from './src/carousel2.mjs';
  2. import CarouselItem from './src/carousel-item2.mjs';
  3. export { carouselEmits, carouselProps } from './src/carousel.mjs';
  4. export { carouselItemProps } from './src/carousel-item.mjs';
  5. export { CAROUSEL_ITEM_NAME, carouselContextKey } from './src/constants.mjs';
  6. import { withInstall, withNoopInstall } from '../../utils/vue/install.mjs';
  7. const ElCarousel = withInstall(Carousel, {
  8. CarouselItem
  9. });
  10. const ElCarouselItem = withNoopInstall(CarouselItem);
  11. export { ElCarousel, ElCarouselItem, ElCarousel as default };
  12. //# sourceMappingURL=index.mjs.map