UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

10 lines (8 loc) 267 B
import { defineComponent, h } from 'vue' const CCardImageOverlay = defineComponent({ name: 'CCardImageOverlay', setup(_, { slots }) { return () => h('div', { class: 'card-img-overlay' }, slots.default && slots.default()) }, }) export { CCardImageOverlay }