component_ryl 1.0.31 → 1.0.34
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 +8 -5
- package/dist/build.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -165,21 +165,21 @@
|
|
|
165
165
|
# <img v-lazy="{url: '图片地址',default:'默认地址'}" />
|
|
166
166
|
# v-password -- 密码输入框 眼睛图标
|
|
167
167
|
# 方法:
|
|
168
|
-
# <el-input v-model="pwd" v-password />
|
|
169
|
-
# <el-input v-model="pwd" v-password="{ color: 'green' }" />
|
|
168
|
+
# <el-input v-model="pwd" v-password />
|
|
169
|
+
# <el-input v-model="pwd" v-password="{ color: 'green' }" /> 这是老版,没效果了
|
|
170
170
|
# v-number -- 只能输入数字 -- 可传入传参max,表示最大值
|
|
171
171
|
# 方法:
|
|
172
172
|
# <el-input v-model="pwd" v-number />
|
|
173
173
|
# v-money -- 只能输入金额,默认2位小数 -- 可传入传参max,表示最大值,如:v-number="{ max: 100 }"
|
|
174
174
|
# 方法:
|
|
175
175
|
# <el-input v-model="pwd" v-money />
|
|
176
|
-
# 7.富文本 --
|
|
177
|
-
# <
|
|
176
|
+
# 7.富文本 -- handTinymce
|
|
177
|
+
# <handTinymce
|
|
178
178
|
# id="myEditor" //唯一容器id
|
|
179
179
|
# :height="400" // 默认400
|
|
180
180
|
# v-model="content"
|
|
181
181
|
# :uploadType="'initUpload'" // 图片上传方式 默认:base64 自定义上传:initUpload
|
|
182
|
-
#
|
|
182
|
+
# url="/static" // 插件和汉化包路径,默认 /static
|
|
183
183
|
# @handleImgUpload="handleImgUpload" // 如果是自定义上传,这个方法接收3个参数,如下:
|
|
184
184
|
# />
|
|
185
185
|
|
|
@@ -237,6 +237,9 @@
|
|
|
237
237
|
#1.0.28: 菜单栏,添加红点提示,调试收起菜单栏时,提示异常bug
|
|
238
238
|
#.
|
|
239
239
|
#1.0.31: 菜单栏新增无穷级数,添加动态面包屑
|
|
240
|
+
#1.0.32: 菜单栏行高调整为42
|
|
241
|
+
#1.0.33: 处理弹窗关闭时,调用2次方法的异常
|
|
242
|
+
#1.0.34: 菜单栏 icon微调
|
|
240
243
|
```
|
|
241
244
|
|
|
242
245
|
For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).
|