UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

12 lines (9 loc) 299 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 }; //# sourceMappingURL=CTabContent.js.map