component_ryl 1.0.45 → 1.0.48
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 +13 -11
- package/dist/build.js +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -7,6 +7,16 @@
|
|
|
7
7
|
# install dependencies
|
|
8
8
|
# npm install
|
|
9
9
|
|
|
10
|
+
#组件总览:
|
|
11
|
+
1.弹窗询问框 -- handConfirm
|
|
12
|
+
2.弹出层 -- handDialog
|
|
13
|
+
3.分页 -- handPaging
|
|
14
|
+
4.数字or金额输入框 -- input (用的少,基本用指令)
|
|
15
|
+
5.指令
|
|
16
|
+
6.富文本 -- handTinymce
|
|
17
|
+
7.动态面包屑 -- handBreadCrumb
|
|
18
|
+
8.自定义tab切换 -- handTab
|
|
19
|
+
|
|
10
20
|
# 所有子方法
|
|
11
21
|
|
|
12
22
|
# 1.头部框架(特定情况)
|
|
@@ -92,14 +102,6 @@
|
|
|
92
102
|
# };
|
|
93
103
|
# },
|
|
94
104
|
# },
|
|
95
|
-
# 2.弹窗询问框 -- handConfirm
|
|
96
|
-
# 3.弹出层 -- handDialog
|
|
97
|
-
# 4.分页 -- handPaging
|
|
98
|
-
# 5.数字or金额输入框 -- input (用的少,基本用指令)
|
|
99
|
-
# 6.指令
|
|
100
|
-
# 7.富文本 -- handTinymce
|
|
101
|
-
# 8.动态面包屑 -- handBreadCrumb
|
|
102
|
-
# 9.自定义tab切换 -- handTab
|
|
103
105
|
|
|
104
106
|
# 使用方法:
|
|
105
107
|
# 1.统一头部(特定情况)不做说明
|
|
@@ -199,11 +201,10 @@
|
|
|
199
201
|
# v-password -- 密码输入框 眼睛图标
|
|
200
202
|
# 方法:
|
|
201
203
|
# <el-input v-model="pwd" v-password />
|
|
202
|
-
# <el-input v-model="pwd" v-password="{ color: 'green' }" /> 这是老版,没效果了
|
|
203
204
|
# v-number -- 只能输入数字 -- 可传入传参max,表示最大值
|
|
204
205
|
# 方法:
|
|
205
206
|
# <el-input v-model="pwd" v-number />
|
|
206
|
-
# v-money -- 只能输入金额,默认2位小数 -- 可传入传参max
|
|
207
|
+
# v-money -- 只能输入金额,默认2位小数 -- 可传入传参max,表示最大值,min 表示最小值,如:v-number="{ max: 100,min:4 }"
|
|
207
208
|
# 方法:
|
|
208
209
|
# <el-input v-model="pwd" v-money />
|
|
209
210
|
# 7.富文本 -- handTinymce
|
|
@@ -294,7 +295,8 @@
|
|
|
294
295
|
#.
|
|
295
296
|
#1.0.42: table调整
|
|
296
297
|
#.
|
|
297
|
-
#1.0.
|
|
298
|
+
#1.0.47: 自定义tab选择(用于特定筛选查询)
|
|
299
|
+
#1.0.48: 指令优化
|
|
298
300
|
```
|
|
299
301
|
|
|
300
302
|
For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).
|