We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parente3b54ae commit6738f28Copy full SHA for 6738f28
src/components/form/index.ts
@@ -1,7 +1,7 @@
1
import{App}from'vue'
2
import{CForm}from'./CForm'
3
import{CFormCheck}from'./CFormCheck'
4
-import{CFormControl}from'./CFormControl'
+//import { CFormControl } from './CFormControl'
5
import{CFormFeedback}from'./CFormFeedback'
6
import{CFormFloating}from'./CFormFloating'
7
import{CFormInput}from'./CFormInput'
@@ -18,7 +18,7 @@ const CFormPlugin = {
18
install:(app:App):void=>{
19
app.component(CForm.name,CForm)
20
app.component(CFormCheck.name,CFormCheck)
21
-app.component(CFormControl.name,CFormControl)
+//app.component(CFormControl.name, CFormControl)
22
app.component(CFormFeedback.name,CFormFeedback)
23
app.component(CFormFloating.name,CFormFloating)
24
app.component(CFormInput.name,CFormInput)
@@ -37,7 +37,7 @@ export {
37
CFormPlugin,
38
CForm,
39
CFormCheck,
40
-CFormControl,
+//CFormControl,
41
CFormFeedback,
42
CFormFloating,
43
CFormInput,