UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

10 lines (8 loc) 236 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 }