component_ryl 1.0.42 → 1.0.45
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 +17 -1
- package/dist/build.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -99,6 +99,7 @@
|
|
|
99
99
|
# 6.指令
|
|
100
100
|
# 7.富文本 -- handTinymce
|
|
101
101
|
# 8.动态面包屑 -- handBreadCrumb
|
|
102
|
+
# 9.自定义tab切换 -- handTab
|
|
102
103
|
|
|
103
104
|
# 使用方法:
|
|
104
105
|
# 1.统一头部(特定情况)不做说明
|
|
@@ -244,6 +245,19 @@
|
|
|
244
245
|
# :home="{path: "/home", meta: { title: "首页" }}" // 默认首页信息
|
|
245
246
|
# />
|
|
246
247
|
|
|
248
|
+
# 9.自定义tab切换
|
|
249
|
+
# <handTab :list="statusList" @getStatus="getStatus" ref="handTab"/>
|
|
250
|
+
|
|
251
|
+
# 参数:
|
|
252
|
+
# list: [
|
|
253
|
+
# {
|
|
254
|
+
# label: '全部',
|
|
255
|
+
# value: 0
|
|
256
|
+
# },
|
|
257
|
+
# ]
|
|
258
|
+
# 方法:
|
|
259
|
+
# getStatus 返回了当前选中对象和index
|
|
260
|
+
|
|
247
261
|
# serve with hot reload at localhost:8080
|
|
248
262
|
# npm run dev
|
|
249
263
|
|
|
@@ -277,8 +291,10 @@
|
|
|
277
291
|
#1.0.37: 菜单栏 new字样 效果调试
|
|
278
292
|
#1.0.38: 富文本编辑框,去掉即将删除的插件
|
|
279
293
|
#1.0.39: 分页组件优化,自定义设置
|
|
280
|
-
|
|
294
|
+
#.
|
|
281
295
|
#1.0.42: table调整
|
|
296
|
+
#.
|
|
297
|
+
#1.0.45: 自定义tab选择(用于特定筛选查询)
|
|
282
298
|
```
|
|
283
299
|
|
|
284
300
|
For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).
|