npm install custom-form-vue
具体使用请参考examples/App.vue
import Vue from "vue"
import CustomFormVue from "custom-form-vue"
Vue.use(CustomFormVue)
<template>
<CustomFormDesign v-model="componentList" />
<CustomFormFill v-model="formValue" :componentList="componentList" />
</template>
自定义表单填写器
props
参数 | 说明 | 格式 |
---|---|---|
v-model | 表单编辑获得的表单内容 | [{ id:"",value:" }] |
componentList | 表单设计器生成的表单内容 | 参考表单生成器 |
自定义表单设计器
props
参数 | 说明 | 格式 |
---|---|---|
v-model | 表单生成器获得的表单 | [{ name:"",componentName:"",props:{} }] |