UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

17 lines (15 loc) 322 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 }