@coreui/vue
Version:
UI Components Library for Vue.js
14 lines (12 loc) • 385 B
text/typescript
import { App } from 'vue'
import { CCol } from './CCol'
import { CContainer } from './CContainer'
import { CRow } from './CRow'
const CGridPlugin = {
install: (app: App): void => {
app.component(CCol.name as string, CCol)
app.component(CContainer.name as string, CContainer)
app.component(CRow.name as string, CRow)
},
}
export { CGridPlugin, CCol, CContainer, CRow }