vue form components
v2.0.0
https://antonreshetov.github.io/vue-form-components
Die Installation mit NPM wird empfohlen und funktioniert nahtlos mit WebPack.
npm i vfcSie können die neueste Version aus dem GitHub herunterladen: Download
Um in Ihrem Projekt zu verwenden, importieren Sie einfach VFC und installieren Sie sie in VUE.
import Vue from 'vue'
import App from './App.vue'
import VFC from 'vfc'
import 'vfc/dist/vfc.css'
Vue . use ( VFC )
new Vue ( {
render : h => h ( App )
} ) . $mount ( '#app' ) < template >
< vue-input > </ vue-input >
</ template >
< script >
import 'vfc/dist/vfc.css'
import { Input } from 'vfc'
export default {
components : {
[ Input . name ] : Input
}
}
</ script >Vollständige Komponentenliste:
import {
Input ,
Button ,
Checkbox ,
CheckboxGroup ,
Radio ,
Select ,
Option ,
Form ,
FormItem ,
FormBuilder
} from 'vfc' MIT © 2018-Present Anton Reshetov