UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

11 lines (8 loc) 245 B
import { defineComponent, h } from 'vue' const CTabContent = defineComponent({ name: 'CTabContent', setup(_, { slots }) { return () => h('div', { class: 'tab-content' }, slots.default && slots.default()) }, }) export { CTabContent }