component_ryl 1.0.12 → 1.0.16
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 -1
- package/dist/build.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,6 +37,14 @@
|
|
|
37
37
|
# </handHeader>
|
|
38
38
|
|
|
39
39
|
# // 导航列表 -- name 表示 系统名称,list 表示 菜单列表
|
|
40
|
+
# 注:如果菜单需要添加红点提示,则需要添加tips对象,tips对象与path、meta等同级,如:
|
|
41
|
+
# {
|
|
42
|
+
# path: "/",
|
|
43
|
+
# meta: { title: "菜单1", icon: "el-icon-user" },
|
|
44
|
+
# tips: {name: 'hot'} // 表示 小红点 提示
|
|
45
|
+
# tips: {name: 'new'} // 表示 new字样 提示
|
|
46
|
+
# tips: {name: 'num',value:72} // 表示 数字 提示
|
|
47
|
+
# }
|
|
40
48
|
# menuList: {
|
|
41
49
|
# type: Object,
|
|
42
50
|
# default: () => {
|
|
@@ -114,7 +122,7 @@
|
|
|
114
122
|
# :visible="isShow" 弹窗名称
|
|
115
123
|
# title="测试看看1"
|
|
116
124
|
# :width="500"
|
|
117
|
-
# :btnCount="1"
|
|
125
|
+
# :btnCount="1" btnCount值: 2(两个按钮 -- 默认) 1 (1个按钮) 0 (无按钮)
|
|
118
126
|
# :confirmText="'自定义确定按钮的名称'"
|
|
119
127
|
# :cancelText="'自定义取消按钮的名称'"
|
|
120
128
|
# @cancel="取消按钮的事件"
|
|
@@ -177,6 +185,10 @@
|
|
|
177
185
|
#1.0.10: 同上,默认图片异常问题
|
|
178
186
|
#1.0.11: 修改默认主题色
|
|
179
187
|
#1.0.12: 修改细节样式
|
|
188
|
+
#1.0.13: 菜单栏,添加红点提示
|
|
189
|
+
#1.0.14: dialog 弹窗 右上角 添加关闭 xx
|
|
190
|
+
#1.0.15: dialog 弹窗 btnCount 2(两个按钮 -- 默认) 1 (1个按钮) 0 (无按钮)
|
|
191
|
+
#1.0.16: 底部版权信息 识别标签
|
|
180
192
|
```
|
|
181
193
|
|
|
182
194
|
For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).
|