UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

18 lines (15 loc) 311 B
import { defineComponent, h } from 'vue' const CFormFloating = defineComponent({ name: 'CFormFloating', setup(_, { slots }) { return () => h( 'div', { class: 'form-floating', }, slots.default && slots.default(), ) }, }) export { CFormFloating }