UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

11 lines (8 loc) 241 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 }