UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

20 lines (17 loc) 433 B
import { defineComponent, h } from 'vue' const CCardTitle = defineComponent({ name: 'CCardTitle', props: { /** * Component used for the root node. Either a string to use a HTML element or a component. */ as: { type: String, default: 'h5', }, }, setup(props, { slots }) { return () => h(props.as, { class: 'card-title' }, slots.default && slots.default()) }, }) export { CCardTitle }