docs: update version tag

This commit is contained in:
陈嘉涵
2020-01-10 21:06:05 +08:00
parent 6555af4f76
commit e16239e426
124 changed files with 1974 additions and 1974 deletions
+38 -38
View File
@@ -186,50 +186,50 @@ In scrollspy mode, the list of content will be tiled
### Tabs Props
| Attribute | Description | Type | Default | Version |
|------|------|------|------|------|
| v-model | Index of active tab | *string \| number* | `0` | - |
| type | Can be set to `line` `card` | *string* | `line` | - |
| duration | Toggle tab's animation time | *number* | `0.3` | - | - |
| background | Background color | *string* | `white` | - |
| line-width | Width of tab line | *string \| number* | Width of active tab | - |
| line-height | Height of tab line | *string \| number* | `3px` | - |
| color | Tab color | *string* | `#ee0a24` | - |
| title-active-color | Title active color | *string* | - | - |
| title-inactive-color | Title inactive color | *string* | - | - |
| swipe-threshold | Set swipe tabs threshold | *number* | `4` | - | - |
| offset-top | Offset top when use sticky mode | *number* | `0` | - |
| animated | Whether to change tabs with animation | *boolean* | `false` | - |
| border | Whether to show border when `type="line"` | *boolean* | `true` | - |
| ellipsis | Whether to ellipsis too long title | *boolean* | `true` | - |
| sticky | Whether to use sticky mode | *boolean* | `false` | - |
| swipeable | Whether to switch tabs with swipe gestrue in the content | *boolean* | `false` | - |
| lazy-render | Whether to enable tab content lazy render | *boolean* | `true` | - |
| scrollspy | Whether to use scrollspy mode | *boolean* | `false` | 2.3.0 |
| Attribute | Description | Type | Default |
|------|------|------|------|
| v-model | Index of active tab | *string \| number* | `0` |
| type | Can be set to `line` `card` | *string* | `line` |
| duration | Toggle tab's animation time | *number* | `0.3` | - |
| background | Background color | *string* | `white` |
| line-width | Width of tab line | *string \| number* | Width of active tab |
| line-height | Height of tab line | *string \| number* | `3px` |
| color | Tab color | *string* | `#ee0a24` |
| title-active-color | Title active color | *string* | - |
| title-inactive-color | Title inactive color | *string* | - |
| swipe-threshold | Set swipe tabs threshold | *number* | `4` | - |
| offset-top | Offset top when use sticky mode | *number* | `0` |
| animated | Whether to change tabs with animation | *boolean* | `false` |
| border | Whether to show border when `type="line"` | *boolean* | `true` |
| ellipsis | Whether to ellipsis too long title | *boolean* | `true` |
| sticky | Whether to use sticky mode | *boolean* | `false` |
| swipeable | Whether to switch tabs with swipe gestrue in the content | *boolean* | `false` |
| lazy-render | Whether to enable tab content lazy render | *boolean* | `true` |
| scrollspy `v2.3.0` | Whether to use scrollspy mode | *boolean* | `false` |
### Tab Props
| Attribute | Description | Type | Default | Version |
|------|------|------|------|------|
| name | Identifier | *string \| number* | Index of tab | - |
| title | Title | *string* | - | - |
| title-style | Custom title style | *any* | - | 2.2.14 |
| disabled | Whether to disable tab | *boolean* | `false` | - |
| dot | Whether to show red dot on the title | *boolean* | `false` | 2.3.0 |
| info | Content of the badge on the title | *string \| number* | - | 2.3.0 |
| url | Link | *string* | - | 2.2.1 |
| to | Target route of the link, same as to of vue-router | *string \| object* | - | 2.2.1 |
| replace | If true, the navigation will not leave a history record | *boolean* | `false` | 2.2.1 |
| Attribute | Description | Type | Default |
|------|------|------|------|
| name | Identifier | *string \| number* | Index of tab |
| title | Title | *string* | - |
| title-style `v2.2.14` | Custom title style | *any* | - |
| disabled | Whether to disable tab | *boolean* | `false` |
| dot `v2.3.0` | Whether to show red dot on the title | *boolean* | `false` |
| info `v2.3.0` | Content of the badge on the title | *string \| number* | - |
| url `v2.2.1` | Link | *string* | - |
| to `v2.2.1` | Target route of the link, same as to of vue-router | *string \| object* | - |
| replace `v2.2.1` | If true, the navigation will not leave a history record | *boolean* | `false` |
### Tabs Events
| Event | Description | Arguments | Version |
|------|------|------|------|
| click | Triggered when click tab | nametitle | - |
| change | Triggered when active tab changed | nametitle | - |
| disabled | Triggered when click disabled tab | nametitle | - |
| rendered | Triggered when content first rendered in lazy-render mode | nametitle | 2.3.0 |
| scroll | Triggered when tab scroll in sticky mode | object: { scrollTop, isFixed } | - |
| Event | Description | Arguments |
|------|------|------|
| click | Triggered when click tab | nametitle |
| change | Triggered when active tab changed | nametitle |
| disabled | Triggered when click disabled tab | nametitle |
| rendered `v2.3.0` | Triggered when content first rendered in lazy-render mode | nametitle |
| scroll | Triggered when tab scroll in sticky mode | object: { scrollTop, isFixed } |
### Tabs Methods
+38 -38
View File
@@ -190,50 +190,50 @@ export default {
### Tabs Props
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|------|------|------|------|------|
| v-model | 绑定当前选中标签的标识符 | *string \| number* | `0` | - |
| type | 样式类型,可选值为`card` | *string* | `line` | - |
| duration | 动画时间,单位秒 | *number* | `0.3` | - |
| background | 标签栏背景色 | *string* | `white` | - |
| line-width | 底部条宽度,默认单位 px | *string \| number* | `auto` | - |
| line-height | 底部条高度,默认单位 px | *string \| number* | `3px` | - |
| color | 标签主题色 | *string* | `#ee0a24` | - |
| title-active-color | 标题选中态颜色 | *string* | - | - |
| title-inactive-color | 标题默认态颜色 | *string* | - | - |
| swipe-threshold | 滚动阈值,标签数量超过多少个可滚动 | *number* | `4` | - |
| offset-top | 粘性定位布局下与顶部的最小距离,单位 px | *number* | `0` | - |
| animated | 是否开启切换标签内容时的转场动画 | *boolean* | `false` | - |
| border | 是否显示标签栏外边框,仅在`type="line"`时有效 | *boolean* | `true` | - |
| ellipsis | 是否省略过长的标题文字 | *boolean* | `true` | - |
| sticky | 是否使用粘性定位布局 | *boolean* | `false` | - |
| swipeable | 是否开启手势滑动切换 | *boolean* | `false` | - |
| lazy-render | 是否开启延迟渲染(首次切换到标签时才触发内容渲染) | *boolean* | `true` | - |
| scrollspy | 是否开启滚动导航 | *boolean* | `false` | 2.3.0 |
| 参数 | 说明 | 类型 | 默认值 |
|------|------|------|------|
| v-model | 绑定当前选中标签的标识符 | *string \| number* | `0` |
| type | 样式类型,可选值为`card` | *string* | `line` |
| duration | 动画时间,单位秒 | *number* | `0.3` |
| background | 标签栏背景色 | *string* | `white` |
| line-width | 底部条宽度,默认单位 px | *string \| number* | `auto` |
| line-height | 底部条高度,默认单位 px | *string \| number* | `3px` |
| color | 标签主题色 | *string* | `#ee0a24` |
| title-active-color | 标题选中态颜色 | *string* | - |
| title-inactive-color | 标题默认态颜色 | *string* | - |
| swipe-threshold | 滚动阈值,标签数量超过多少个可滚动 | *number* | `4` |
| offset-top | 粘性定位布局下与顶部的最小距离,单位 px | *number* | `0` |
| animated | 是否开启切换标签内容时的转场动画 | *boolean* | `false` |
| border | 是否显示标签栏外边框,仅在`type="line"`时有效 | *boolean* | `true` |
| ellipsis | 是否省略过长的标题文字 | *boolean* | `true` |
| sticky | 是否使用粘性定位布局 | *boolean* | `false` |
| swipeable | 是否开启手势滑动切换 | *boolean* | `false` |
| lazy-render | 是否开启延迟渲染(首次切换到标签时才触发内容渲染) | *boolean* | `true` |
| scrollspy `v2.3.0` | 是否开启滚动导航 | *boolean* | `false` |
### Tab Props
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|------|------|------|------|------|
| name | 标签名称,作为匹配的标识符 | *string \| number* | 标签的索引值 | 2.0.6 |
| title | 标题 | *string* | - | - |
| title-style | 自定义标题样式 | *any* | - | 2.2.14 |
| disabled | 是否禁用标签 | *boolean* | `false` | - |
| dot | 是否在标题右上角显示小红点 | *boolean* | `false` | 2.3.0 |
| info | 标题右上角徽标的内容 | *string \| number* | - | 2.3.0 |
| url | 点击后跳转的链接地址 | *string* | - | 2.2.1 |
| to | 点击后跳转的目标路由对象,同 vue-router 的 [to 属性](https://router.vuejs.org/zh/api/#to) | *string \| object* | - | 2.2.1 |
| replace | 是否在跳转时替换当前页面历史 | *boolean* | `false` | 2.2.1 |
| 参数 | 说明 | 类型 | 默认值 |
|------|------|------|------|
| name `v2.0.6` | 标签名称,作为匹配的标识符 | *string \| number* | 标签的索引值 |
| title | 标题 | *string* | - |
| title-style `v2.2.14` | 自定义标题样式 | *any* | - |
| disabled | 是否禁用标签 | *boolean* | `false` |
| dot `v2.3.0` | 是否在标题右上角显示小红点 | *boolean* | `false` |
| info `v2.3.0` | 标题右上角徽标的内容 | *string \| number* | - |
| url `v2.2.1` | 点击后跳转的链接地址 | *string* | - |
| to `v2.2.1` | 点击后跳转的目标路由对象,同 vue-router 的 [to 属性](https://router.vuejs.org/zh/api/#to) | *string \| object* | - |
| replace `v2.2.1` | 是否在跳转时替换当前页面历史 | *boolean* | `false` |
### Tabs Events
| 事件名 | 说明 | 回调参数 | 版本 |
|------|------|------|------|
| click | 点击标签时触发 | name:标识符,title:标题 | - |
| change | 当前激活的标签改变时触发 | name:标识符,title:标题 | - |
| disabled | 点击被禁用的标签时触发 | name:标识符,title:标题 | - |
| rendered | 标签内容首次渲染时触发(仅在开启延迟渲染后触发) | name:标识符,title:标题 | 2.3.0 |
| scroll | 滚动时触发,仅在 sticky 模式下生效 | { scrollTop: 距离顶部位置, isFixed: 是否吸顶 } | - |
| 事件名 | 说明 | 回调参数 |
|------|------|------|
| click | 点击标签时触发 | name:标识符,title:标题 |
| change | 当前激活的标签改变时触发 | name:标识符,title:标题 |
| disabled | 点击被禁用的标签时触发 | name:标识符,title:标题 |
| rendered `v2.3.0` | 标签内容首次渲染时触发(仅在开启延迟渲染后触发) | name:标识符,title:标题 |
| scroll | 滚动时触发,仅在 sticky 模式下生效 | { scrollTop: 距离顶部位置, isFixed: 是否吸顶 } |
### Tabs 方法