form-create 是一個能夠經過 JSON 生成具備動態渲染、數據收集、驗證和提交功能的表單生成器。而且支持生成任何 Vue 組件。結合內置17種經常使用表單組件和自定義組件,再複雜的表單均可以輕鬆搞定。html
自定義組件github
經過 JSON 建立表單
npm
經過 API 操做表單
element-ui
名稱 | 說明 |
---|---|
@form-create/iview | iview 版表單生成器 |
@form-create/element-ui | element-ui 版表單生成器 |
@form-create/core | form-create 核心包 |
@form-create/utils | form-create 工具包 |
@form-create/data | 省市區多級聯動數據 |
以element-ui版本爲例介紹如何在項目中使用 form-createapp
npm i @form-create/element-ui
全局註冊iview
import formCreate form '@form-create/element-ui'; Vue.use(formCreate);
局部掛載工具
import formCreate form '@form-create/element-ui'; export default { components:{ formCreate:formCreaet.$form() } }
<template> <form-create v-model="fApi" :rule="rule" @on-submit="onSubmit"></form-create> </template>
export default { data () { return { //表單實例對象 $f fApi:{}, //表單生成規則 rule:[ { type:'input', field:'goods_name', title:'商品名稱' }, { type:'datePicker', field:'created_at', title:'建立時間' } ] }; }, methods:{ onSubmit(formData){ //TODO 提交表單 } } };
能夠經過 $f 快速操做表單,例如:佈局
$f.hidden
:隱藏指定組件$f.validate
:驗證表單$f.setValue
:修改表單組件的值$f.append
:追加表單組件經過標籤生成ui
{ type:'el-button', name: 'btn', props:{ type:'primary', field:'btn', loading:true }, children:['加載中'] }
經過模板生成
{ type:'template', name:'btn' template:'<el-button :loading="loading">{{text}}<el-button>', vm: new Vue({ data:{ loading:true, text:'加載中' } }) }
自定義組件轉換爲表單組件後,可經過$f.formData
,$f.getValue
,$f.setValue
,$f.disabled
等方法快速操做組件,達到和內置組件相同的效果
props
在自定義組件內部經過props
接收一下屬性
value
表單的值disabled
組件的禁用狀態例如:
vm = Vue({ props:{ value:String, disabled:Boolean } })
input 事件
經過input
事件更新組件內部的值
當組件值發生變化後,經過 input 事件更新值.例如:
vm.$emit('input',newValue);
要生成的自定義組件必須經過Vue.component
方法掛載到全局,或者經過formCreate.component
方法掛載
例如:
formCreate.component('TestComponent',component);
或者
Vue.component('TestComponent',component);
表單組件必須定義field
屬性
JSON
{ type:'TestComponent', value:'test', field:'testField', title:'自定義組件' }
Maker
formCreate.maker.create('TestComponent','testField','自定義組件').value('test')
自定義計數器按鈕組件,獲取按鈕點擊數.該組件的功能和內置組件相同
formCreate.maker.template('<el-button @click="onClick" long :disabled="disabled">計數器-{{num}}</el-button>', new Vue({ props:{ //預約義 disabled:Boolean, value:Number, }, data: function () { return { num: this.value, } }, watch:{ value(n){ this.num = n; } }, methods: { onClick: function () { this.num++; //更新組件內部的值 this.$emit('input',this.num); }, }, }), 'tmp', '自定義 title').value(100).props('disabled',false)