UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

12 lines (9 loc) 289 B
import { defineComponent, h } from 'vue'; const CCardBody = defineComponent({ name: 'CCardBody', setup(_, { slots }) { return () => h('div', { class: 'card-body' }, slots.default && slots.default()); }, }); export { CCardBody }; //# sourceMappingURL=CCardBody.js.map