UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

12 lines (9 loc) 294 B
import { defineComponent, h } from 'vue'; const CToastBody = defineComponent({ name: 'CToastBody', setup(_, { slots }) { return () => h('div', { class: 'toast-body' }, slots.default && slots.default()); }, }); export { CToastBody }; //# sourceMappingURL=CToastBody.js.map