[Doc] fix uploader result-type

This commit is contained in:
陈嘉涵
2018-08-31 14:26:32 +08:00
parent 9899d97fbc
commit 207799d845
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -169,4 +169,4 @@ In swipeable mode, you can switch tabs with swipe gestrue in the content
| click | Triggered when click tab | indexindex of current tabtitle: tab title |
| change | Triggered when active tab changed | indexindex of current tabtitle: tab title |
| disabled | Triggered when click disabled tab | indexindex of current tab, title: tab title |
| scroll | Triggered when tab scroll | escroll arguments |
| scroll | Triggered when tab scroll | Object: { scrollTop, isFixed } |
+1 -1
View File
@@ -171,4 +171,4 @@ export default {
| click | 点击标签时触发 | index:标签索引,title:标题 |
| change | 当前激活的标签改变时触发 | index:标签索引,title:标题 |
| disabled | 点击被禁用的标签时触发 | index:标签索引,title:标题 |
| scroll | 滚动时触发 | e:滚动参数 |
| scroll | 滚动时触发 | Object: { scrollTop: 距离顶部位置, isFixed: 是否吸顶 } |