Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vform666/variant-form
A powerful form designer for Vue.
https://github.com/vform666/variant-form
designer element-ui form iview online-forms vue vuejs2
Last synced: 28 days ago
JSON representation
A powerful form designer for Vue.
- Host: GitHub
- URL: https://github.com/vform666/variant-form
- Owner: vform666
- License: other
- Created: 2021-09-23T08:54:29.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-22T02:50:39.000Z (4 months ago)
- Last Synced: 2024-09-28T17:41:28.715Z (about 1 month ago)
- Topics: designer, element-ui, form, iview, online-forms, vue, vuejs2
- Language: Vue
- Homepage: http://www.vform666.com
- Size: 1.48 MB
- Stars: 1,739
- Watchers: 19
- Forks: 306
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
- popular-dependents-lists - vform666/variant-form - 🌟 682 (Ramda / vform666/variant-form)
- awesome-lesscode - variant-form - form)](https://github.com/vform666/variant-form) ![GitHub last commit](https://img.shields.io/github/last-commit/vform666/variant-form?label=%E6%9C%80%E5%90%8E%E6%9B%B4%E6%96%B0%E6%97%B6%E9%97%B4) (精选 LessCode 项目)
README
# Variant Form
#### 一款高效的Vue低代码表单,可视化设计,一键生成源码,享受更多摸鱼时间。![image](https://ks3-cn-beijing.ksyuncs.com/vform-static/img/vform_demo.gif)
### 立即体验
[在线Demo](http://120.92.142.115/)### 🎉🎉基于VForm的全栈低代码平台已发布🎉🎉
[美乐低代码——立即进入](https://melecode.com/) (私有部署、开箱即用️,已开源✌✌)️
### 立即体验VForm Pro高级版(提供商业支持)
[Pro Demo](https://www.vform666.com/pro/)### 视频教程集合:
[B站观看](https://space.bilibili.com/626932375)### Vue 3正式版已发布
[立即进入](https://gitee.com/vdpadmin/variant-form3-vite)### 🎉🎉基于Vant组件库的Mobile版本已发布🎉🎉
[立即进入](https://vform666.com/vform-mobile.html)### 友情链接
[Fantastic-admin](https://hooray.gitee.io/fantastic-admin/) —— 一款开箱即用的 Vue 中后台管理系统框架(支持Vue2/Vue3)
### 功能一览
```
> 拖拽式可视化表单设计;
> 支持PC、Pad、H5三种布局;
> 支持运行时动态加载表单;
> 支持表单复杂交互控制;
> 支持自定义CSS样式;
> 支持自定义校验逻辑;
> 支持国际化多语言;
> 兼容IE 11浏览器;
> 可导出Vue组件、HTML源码;
> 可导出Vue的SFC单文件组件;
> 支持开发自定义组件;
> 支持响应式自适应布局;
> 支持VS Code插件;
> 更多功能等你探究...;
```### 安装依赖
```
npm install --registry=https://registry.npmmirror.com
```### 开发调试
```
npm run serve
```### 生产打包
```
npm run build
```### 表单设计器 + 表单渲染器打包
```
npm run lib
```### 表单渲染器打包
```
npm run lib-render
```### 浏览器兼容性
```Chrome(及同内核的浏览器如QQ浏览器、360浏览器等等),Edge, Firefox,Safari,IE 11```
### 跟Vue项目集成
#### 1. 安装包
```bash
npm i vform-builds
```
或
```bash
yarn add vform-builds
```
#### 2. 引入并全局注册VForm组件
```javascript
import Vue from 'vue'
import App from './App.vue'import ElementUI from 'element-ui' //引入element-ui库
import VForm from 'vform-builds' //引入VForm库import 'element-ui/lib/theme-chalk/index.css' //引入element-ui样式
import 'vform-builds/dist/VFormDesigner.css' //引入VForm样式Vue.config.productionTip = false
Vue.use(ElementUI) //全局注册element-ui
Vue.use(VForm) //全局注册VForm(同时注册了v-form-designer和v-form-render组件)new Vue({
render: h => h(App),
}).$mount('#app')
```
#### 3. 在Vue模板中使用表单设计器组件
```html
export default {
data() {
return {
}
}
}body {
margin: 0; /* 如果页面出现垂直滚动条,则加入此行CSS以消除之 */
}```
#### 4. 在Vue模板中使用表单渲染器组件
```html
Submit
export default {
data() {
return {
formJson: {"widgetList":[],"formConfig":{"labelWidth":80,"labelPosition":"left","size":"","labelAlign":"label-left-align","cssCode":"","customClass":"","functions":"","layoutType":"PC","onFormCreated":"","onFormMounted":"","onFormDataChange":""}},
formData: {},
optionData: {}
}
},
methods: {
submitForm() {
this.$refs.vFormRef.getFormData().then(formData => {
// Form Validation OK
alert( JSON.stringify(formData) )
}).catch(error => {
// Form Validation failed
this.$message.error(error)
})
}
}
}```
### 资源链接
文档官网:https://www.vform666.com/
Gitee仓库:https://gitee.com/vdpadmin/variant-form
Github仓库:https://github.com/vform666/variant-form
VS Code插件:https://www.vform666.com/plugin/
更新日志:https://www.vform666.com/changelog.html
订阅Pro版:https://www.vform666.com/pro/
技术交流群:扫如下二维码加群
![image](https://vform2022.ks3-cn-beijing.ksyuncs.com/vchat_qrcode.png)