@coreui/vue
Version:
UI Components Library for Vue.js
14 lines (11 loc) • 330 B
JavaScript
import { defineComponent, h } from 'vue';
const CFormFloating = defineComponent({
name: 'CFormFloating',
setup(_, { slots }) {
return () => h('div', {
class: 'form-floating',
}, slots.default && slots.default());
},
});
export { CFormFloating };
//# sourceMappingURL=CFormFloating.js.map