@dhccmobile/vue3-lo-form 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -2
- package/dist/demo.html +1 -10
- package/dist/vue3-lo-form.common.js +8573 -6928
- package/dist/vue3-lo-form.common.js.map +1 -1
- package/dist/vue3-lo-form.css +1 -1
- package/dist/vue3-lo-form.umd.js +8583 -6937
- package/dist/vue3-lo-form.umd.js.map +1 -1
- package/dist/vue3-lo-form.umd.min.js +1 -1
- package/dist/vue3-lo-form.umd.min.js.map +1 -1
- package/package.json +9 -10
- package/src/components/form/DvFormLayout.vue +23 -0
- package/src/main.ts +2 -2
package/README.md
CHANGED
|
@@ -4,11 +4,18 @@
|
|
|
4
4
|
动态表单-支持Vue3.0版-PC端-插件
|
|
5
5
|
|
|
6
6
|
### 更新日志
|
|
7
|
-
|
|
7
|
+
- 2.0.2
|
|
8
|
+
1.适配移动端单行展示
|
|
9
|
+
-
|
|
10
|
+
- 2.0.1
|
|
11
|
+
1.新增 contextPath 参数; 默认 /ms-loong
|
|
12
|
+
|
|
13
|
+
- 2.0.0
|
|
8
14
|
1.优化打包,减小打包后的体积
|
|
9
15
|
2.添加节假日查询开关,默认 false。 `formToolsService.setSupHoliday(true)`
|
|
10
16
|
3.添加表单disabled自定义背景色, 默认 #f0f0f0。 `formToolsService.setFormDisabledColor("#eee")`
|
|
11
|
-
|
|
17
|
+
|
|
18
|
+
- 1.1.42
|
|
12
19
|
修复金额转大写逻辑错误问题
|
|
13
20
|
|
|
14
21
|
## 目录结构
|
package/dist/demo.html
CHANGED
|
@@ -1,10 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<title>vue3-lo-form demo</title>
|
|
3
|
-
<script src="./vue3-lo-form.umd.js"></script>
|
|
4
|
-
|
|
5
|
-
<link rel="stylesheet" href="./vue3-lo-form.css">
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
<script>
|
|
9
|
-
console.log(vue3-lo-form)
|
|
10
|
-
</script>
|
|
1
|
+
<!doctype html><meta charset="utf-8"><title>vue3-lo-form demo</title><script src="./vue3-lo-form.umd.js"></script><link rel="stylesheet" href="./vue3-lo-form.css"><script>console.log(vue3-lo-form)</script>
|