UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

14 lines (11 loc) 345 B
import { defineComponent, h } from 'vue'; const CCarouselCaption = defineComponent({ name: 'CCarouselCaption', setup(_, { slots }) { return () => h('div', { class: 'carousel-caption', }, slots.default && slots.default()); }, }); export { CCarouselCaption }; //# sourceMappingURL=CCarouselCaption.js.map