UNPKG

dl-smart-form

Version:

基于 vue 与 element-UI 设计的自定义表单

53 lines (43 loc) 1.6 kB
# dl-smart-form `dl-smart-form`是基于 vue 与 element-UI 设计的自定义表单。[文档查看](http://daiter.cn/dlSmartForm/home) ### npm 安装 推荐使用 npm 的方式安装,它能更好地和 `webpack` 打包工具配合使用。 ``` npm i dl-smart-form -S ``` ### 完整引入 在 main.js 中写入以下内容: ``` javascript import Vue from 'vue'; import ElementUI from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css'; import App from './App.vue'; import { createrInstaller, reporterInstaller, showerInstaller } from 'dl-smart-form'; Vue.use(Element) Vue.use(createrInstaller) Vue.use(reporterInstaller) Vue.use(showerInstaller) new Vue({ router, render: h => h(App) }).$mount('#app') ``` ### verison | 版本 | 描述 | 日期 | | - | - | - | | 0.1.14 | 内部字段控件移动端兼容 | 2023.03.22 | | 0.1.13 | 添加右击新增插入字段功能 | 2023.02.01 | | 0.1.12 | 关联规则选项操作bug修复 | 2022.11.17 | | 0.1.11 | 表单样式优化 | 2022.10.08 | | 0.1.10 | 右击菜单项bug修复 | 2022.09.29 | | 0.1.9 | 修改开关关联规则 | 2022.09.28 | | 0.1.8 | 关联规则文档整理编写 | 2022.09.28 | | 0.1.7 | 梳理优化代码和文档,添加明细字表控件 | 2022.09.27 | | 0.1.6 | 优化关联规则 | 2022.09.19 | | 0.1.5 | 优化开关关联规则,表单布局样式优化 | 2022.09.01 | | 0.1.4 | 增加字段 `Key` 属性配置功能、优化移动端布局数据、新增 `空白行` 布局字段 | 2022.08.31 | | 0.1.2 | 初始beta版本 | 2022.08.26 |