mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
docs(Tab): refine the description of 'props' (#12935)
This commit is contained in:
parent
7898140be7
commit
6d1b953ab0
@ -258,7 +258,7 @@ By setting the `showHeader` prop to `false`, the title bar of the Tabs component
|
|||||||
| line-height | Height of tab line | _number \| string_ | `3px` |
|
| line-height | Height of tab line | _number \| string_ | `3px` |
|
||||||
| animated | Whether to change tabs with animation | _boolean_ | `false` |
|
| animated | Whether to change tabs with animation | _boolean_ | `false` |
|
||||||
| border | Whether to show border when `type="line"` | _boolean_ | `false` |
|
| border | Whether to show border when `type="line"` | _boolean_ | `false` |
|
||||||
| ellipsis | Whether to ellipsis too long title | _boolean_ | `true` |
|
| ellipsis | Whether to ellipsis too long title (Takes effect only if `shrink` is `false` and the number of `tabs` is less than or equal to `swipe-threshold`) | _boolean_ | `true` |
|
||||||
| sticky | Whether to use sticky mode | _boolean_ | `false` |
|
| sticky | Whether to use sticky mode | _boolean_ | `false` |
|
||||||
| shrink | Whether to shrink the the tabs to the left | _boolean_ | `false` |
|
| shrink | Whether to shrink the the tabs to the left | _boolean_ | `false` |
|
||||||
| swipeable | Whether to enable gestures to slide left and right | _boolean_ | `false` |
|
| swipeable | Whether to enable gestures to slide left and right | _boolean_ | `false` |
|
||||||
@ -266,7 +266,7 @@ By setting the `showHeader` prop to `false`, the title bar of the Tabs component
|
|||||||
| scrollspy | Whether to use scrollspy mode | _boolean_ | `false` |
|
| scrollspy | Whether to use scrollspy mode | _boolean_ | `false` |
|
||||||
| show-header `v4.7.3` | Whether to show title bar | _boolean_ | `true` |
|
| show-header `v4.7.3` | Whether to show title bar | _boolean_ | `true` |
|
||||||
| offset-top | Sticky offset top , supports `px` `vw` `vh` `rem` unit, default `px` | _number \| string_ | `0` |
|
| offset-top | Sticky offset top , supports `px` `vw` `vh` `rem` unit, default `px` | _number \| string_ | `0` |
|
||||||
| swipe-threshold | Set swipe tabs threshold | _number \| string_ | `5` |
|
| swipe-threshold | Set swipe tabs threshold (Takes effect only when `shrink` is `false` and `ellipsis` is `true`) | _number \| string_ | `5` |
|
||||||
| title-active-color | Title active color | _string_ | - |
|
| title-active-color | Title active color | _string_ | - |
|
||||||
| title-inactive-color | Title inactive color | _string_ | - |
|
| title-inactive-color | Title inactive color | _string_ | - |
|
||||||
| before-change | Callback function before changing tabs, return `false` to prevent change, support return Promise | _(name: number \| string) => boolean \| Promise\<boolean\>_ | - |
|
| before-change | Callback function before changing tabs, return `false` to prevent change, support return Promise | _(name: number \| string) => boolean \| Promise\<boolean\>_ | - |
|
||||||
@ -278,7 +278,7 @@ By setting the `showHeader` prop to `false`, the title bar of the Tabs component
|
|||||||
| title | Title | _string_ | - |
|
| title | Title | _string_ | - |
|
||||||
| disabled | Whether to disable tab | _boolean_ | `false` |
|
| disabled | Whether to disable tab | _boolean_ | `false` |
|
||||||
| dot | Whether to show red dot on the title | _boolean_ | `false` |
|
| dot | Whether to show red dot on the title | _boolean_ | `false` |
|
||||||
| badge | Content of the badge on the title | _number \| string_ | - |
|
| badge | Content of the badge on the title (Effective when `dot` is `false`) | _number \| string_ | - |
|
||||||
| name | Identifier | _number \| string_ | Index of tab |
|
| name | Identifier | _number \| string_ | Index of tab |
|
||||||
| url | Link | _string_ | - |
|
| url | Link | _string_ | - |
|
||||||
| to | The target route should navigate to when clicked on, same as the [to prop](https://router.vuejs.org/api/interfaces/RouterLinkProps.html#Properties-to) of Vue Router | _string \| object_ | - |
|
| to | The target route should navigate to when clicked on, same as the [to prop](https://router.vuejs.org/api/interfaces/RouterLinkProps.html#Properties-to) of Vue Router | _string \| object_ | - |
|
||||||
|
@ -269,7 +269,7 @@ export default {
|
|||||||
| line-height | 底部条高度,默认单位 `px` | _number \| string_ | `3px` |
|
| line-height | 底部条高度,默认单位 `px` | _number \| string_ | `3px` |
|
||||||
| animated | 是否开启切换标签内容时的转场动画 | _boolean_ | `false` |
|
| animated | 是否开启切换标签内容时的转场动画 | _boolean_ | `false` |
|
||||||
| border | 是否显示标签栏外边框,仅在 `type="line"` 时有效 | _boolean_ | `false` |
|
| border | 是否显示标签栏外边框,仅在 `type="line"` 时有效 | _boolean_ | `false` |
|
||||||
| ellipsis | 是否省略过长的标题文字 | _boolean_ | `true` |
|
| ellipsis | 是否省略过长的标题文字(仅在 `shrink` 为 `false` 且 `tab` 数量小于等于 `swipe-threshold` 时生效) | _boolean_ | `true` |
|
||||||
| sticky | 是否使用粘性布局 | _boolean_ | `false` |
|
| sticky | 是否使用粘性布局 | _boolean_ | `false` |
|
||||||
| shrink | 是否开启左侧收缩布局 | _boolean_ | `false` |
|
| shrink | 是否开启左侧收缩布局 | _boolean_ | `false` |
|
||||||
| swipeable | 是否开启手势左右滑动切换 | _boolean_ | `false` |
|
| swipeable | 是否开启手势左右滑动切换 | _boolean_ | `false` |
|
||||||
@ -277,7 +277,7 @@ export default {
|
|||||||
| scrollspy | 是否开启滚动导航 | _boolean_ | `false` |
|
| scrollspy | 是否开启滚动导航 | _boolean_ | `false` |
|
||||||
| show-header `v4.7.3` | 是否显示标题栏 | _boolean_ | `true` |
|
| show-header `v4.7.3` | 是否显示标题栏 | _boolean_ | `true` |
|
||||||
| offset-top | 粘性布局下吸顶时与顶部的距离,支持 `px` `vw` `vh` `rem` 单位,默认 `px` | _number \| string_ | `0` |
|
| offset-top | 粘性布局下吸顶时与顶部的距离,支持 `px` `vw` `vh` `rem` 单位,默认 `px` | _number \| string_ | `0` |
|
||||||
| swipe-threshold | 滚动阈值,标签数量超过阈值且总宽度超过标签栏宽度时开始横向滚动 | _number \| string_ | `5` |
|
| swipe-threshold | 滚动阈值,标签数量超过阈值且总宽度超过标签栏宽度时开始横向滚动(仅在 `shrink` 为 `false` 且 `ellipsis` 为 `true` 时生效) | _number \| string_ | `5` |
|
||||||
| title-active-color | 标题选中态颜色 | _string_ | - |
|
| title-active-color | 标题选中态颜色 | _string_ | - |
|
||||||
| title-inactive-color | 标题默认态颜色 | _string_ | - |
|
| title-inactive-color | 标题默认态颜色 | _string_ | - |
|
||||||
| before-change | 切换标签前的回调函数,返回 `false` 可阻止切换,支持返回 Promise | _(name: number \| string) => boolean \| Promise\<boolean\>_ | - |
|
| before-change | 切换标签前的回调函数,返回 `false` 可阻止切换,支持返回 Promise | _(name: number \| string) => boolean \| Promise\<boolean\>_ | - |
|
||||||
@ -289,7 +289,7 @@ export default {
|
|||||||
| title | 标题 | _string_ | - |
|
| title | 标题 | _string_ | - |
|
||||||
| disabled | 是否禁用标签 | _boolean_ | `false` |
|
| disabled | 是否禁用标签 | _boolean_ | `false` |
|
||||||
| dot | 是否在标题右上角显示小红点 | _boolean_ | `false` |
|
| dot | 是否在标题右上角显示小红点 | _boolean_ | `false` |
|
||||||
| badge | 图标右上角徽标的内容 | _number \| string_ | - |
|
| badge | 图标右上角徽标的内容(`dot` 为 `fasle` 时生效) | _number \| string_ | - |
|
||||||
| name | 标签名称,作为匹配的标识符 | _number \| string_ | 标签的索引值 |
|
| name | 标签名称,作为匹配的标识符 | _number \| string_ | 标签的索引值 |
|
||||||
| url | 点击后跳转的链接地址 | _string_ | - |
|
| url | 点击后跳转的链接地址 | _string_ | - |
|
||||||
| to | 点击后跳转的目标路由对象,等同于 Vue Router 的 [to 属性](https://router.vuejs.org/zh/api/interfaces/RouterLinkProps.html#Properties-to) | _string \| object_ | - |
|
| to | 点击后跳转的目标路由对象,等同于 Vue Router 的 [to 属性](https://router.vuejs.org/zh/api/interfaces/RouterLinkProps.html#Properties-to) | _string \| object_ | - |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user