In version 2 added Form Builder component - a schema-based builder to generate form with components and validation 🎉
Changelog:
Breaking
- Drop async validation
Features
- VeeValidate for form validation
- Form Builder
antonreshetov / vue-form-components
Clean & minimal vue form elements and form builder with validation
Vue Form Components
Documentation
https://antonreshetov.github.io/vue-form-components
Install
NPM
Installing with npm is recommended and it works seamlessly with webpack.
npmivfc
Download
You can download latest version from the Github: Download
Quick start
Global
To use in your project, just import vfc and install into Vue.
importVuefrom'vue'importAppfrom'./App.vue'importVFCfrom'vfc'import'vfc/dist/vfc.css'Vue.use(VFC)newVue({render:h=>h(App)}).$mount('#app')
On demand
<template><vue-input></vue-input></template><script>import'vfc/dist/vfc.css'import{Input}from'vfc'exportdefault{components:{[Input.name]:Input}}</script>
Full component list:
import{Input,Button,Checkbox,CheckboxGroup,Radio,Select,Option,Form,FormItem…
Top comments(0)
Subscribe
For further actions, you may consider blocking this person and/orreporting abuse