diff --git a/src/tab/README.md b/src/tab/README.md index 3f95cfc7a..8b314acdd 100644 --- a/src/tab/README.md +++ b/src/tab/README.md @@ -68,7 +68,7 @@ export default { By default more than 5 tabs, you can scroll through the tabs. You can set `swipe-threshold` attribute to customize threshold number. ```html - + content of tab {{ index }} @@ -77,45 +77,32 @@ By default more than 5 tabs, you can scroll through the tabs. You can set `swipe ### Disabled Tab -You can set `disabled` attribute on the corresponding `van-tab`. +Use `disabled` prop to disable a tab. ```html - + content of tab {{ index }} ``` -```js -import { Toast } from 'vant'; - -export default { - setup() { - const onClickDisabled = (name, title) => Toast(`${name} is disabled`); - return { - onClickDisabled, - }; - }, -}; -``` - ### Card Style Tabs styled as cards. ```html - + content of tab {{ index }} ``` -### Click Event +### Click Tab Event ```html - + content of tab {{ index }} @@ -127,9 +114,9 @@ import { Toast } from 'vant'; export default { setup() { - const onClick = (name, title) => Toast(title); + const onClickTab = ({ title }) => Toast(title); return { - onClick, + onClickTab, }; }, }; @@ -199,7 +186,7 @@ In scrollspy mode, the list of content will be tiled. ### Before Change ```html - + content {{ index }} @@ -207,8 +194,11 @@ In scrollspy mode, the list of content will be tiled. ``` ```js +import { ref } from 'vue'; + export default { setup() { + const active = ref(0); const beforeChange = (index) => { // prevent change if (index === 1) { @@ -222,6 +212,7 @@ export default { }; return { + active, beforeChange, }; }, @@ -273,13 +264,13 @@ export default { | Event | Description | Arguments | | --- | --- | --- | -| click-tab `v3.1.4` | Emitted when a tab is clicked | _{ name: string \| number, title: string, event: MouseEvent }_ | -| click | Emitted when a tab is clicked (Deprecated) | _name: string \| number, title: string_ | +| click-tab `v3.1.4` | Emitted when a tab is clicked | _{ name: string \| number, title: string, event: MouseEvent, disabled: boolean }_ | | change | Emitted when active tab changed | _name: string \| number, title: string_ | -| disabled | Emitted when a disabled tab is clicked | _name: string \| number, title: string_ | | rendered | Emitted when content first rendered in lazy-render mode | _name: string \| number, title: string_ | | scroll | Emitted when tab scrolling in sticky mode | _{ scrollTop: number, isFixed: boolean }_ | +> Tips:click and disabled event is deprecated,place use click-tab event instead. + ### Tabs Methods Use [ref](https://v3.vuejs.org/guide/component-template-refs.html) to get Tabs instance and call instance methods. diff --git a/src/tab/README.zh-CN.md b/src/tab/README.zh-CN.md index 55236afc7..ce0ac9371 100644 --- a/src/tab/README.zh-CN.md +++ b/src/tab/README.zh-CN.md @@ -71,7 +71,7 @@ export default { 标签数量超过 5 个时,标签栏可以在水平方向上滚动,切换时会自动将当前标签居中。 ```html - + 内容 {{ index }} @@ -80,35 +80,22 @@ export default { ### 禁用标签 -设置 `disabled` 属性即可禁用标签,如果需要监听禁用标签的点击事件,可以在 `van-tabs` 上监听`disabled` 事件。 +设置 `disabled` 属性即可禁用标签。 ```html - + 内容 1 内容 2 内容 3 ``` -```js -import { Toast } from 'vant'; - -export default { - setup() { - const onClickDisabled = (name, title) => Toast(`${name}已被禁用`); - return { - onClickDisabled, - }; - }, -}; -``` - ### 样式风格 `Tab` 支持两种样式风格:`line` 和`card`,默认为 `line` 样式,可以通过 `type` 属性切换样式风格。 ```html - + 内容 1 内容 2 内容 3 @@ -117,23 +104,26 @@ export default { ### 点击事件 -可以在 `van-tabs` 上绑定 `click` 事件,事件传参为标签对应的标识符和标题。 +点击标签页时,会触发 `click-tab` 事件。 ```html - + 内容 1 内容 2 ``` ```js +import { ref } from 'vue'; import { Toast } from 'vant'; export default { setup() { - const onClick = (name, title) => Toast(title); + const active = ref(0); + const onClickTab = ({ title }) => Toast(title); return { - onClick, + active, + onClickTab, }; }, }; @@ -205,7 +195,7 @@ export default { 通过 `before-change` 属性可以在切换标签前执行特定的逻辑。 ```html - + 内容 {{ index }} @@ -213,8 +203,11 @@ export default { ``` ```js +import { ref } from 'vue'; + export default { setup() { + const active = ref(0); const beforeChange = (index) => { // 返回 false 表示阻止此次切换 if (index === 1) { @@ -280,13 +273,13 @@ export default { | 事件名 | 说明 | 回调参数 | | --- | --- | --- | -| click-tab `v3.1.4` | 点击标签时触发 | _{ name: string \| number, title: string, event: MouseEvent }_ | -| click | 点击标签时触发(已废弃,请使用 click-tab 事件) | _name: string \| number, title: string_ | +| click-tab `v3.1.4` | 点击标签时触发 | _{ name: string \| number, title: string, event: MouseEvent, disabled: boolean }_ | | change | 当前激活的标签改变时触发 | _name: string \| number, title: string_ | -| disabled | 点击被禁用的标签时触发 | _name: string \| number, title: string_ | | rendered | 标签内容首次渲染时触发(仅在开启延迟渲染后触发) | _name: string \| number, title: string_ | | scroll | 滚动时触发,仅在 sticky 模式下生效 | _{ scrollTop: number, isFixed: boolean }_ | +> 提示:click 和 disabled 事件已废弃,请使用 click-tab 事件代替。 + ### Tabs 方法 通过 ref 可以获取到 Tabs 实例并调用实例方法,详见[组件实例方法](#/zh-CN/advanced-usage#zu-jian-shi-li-fang-fa)。 diff --git a/src/tab/demo/index.vue b/src/tab/demo/index.vue index b6d7ef9b3..a4746e9f6 100644 --- a/src/tab/demo/index.vue +++ b/src/tab/demo/index.vue @@ -24,7 +24,7 @@ - + - + {{ t('content') }} {{ index }} @@ -151,14 +151,10 @@ export default { const tabs = [1, 2, 3, 4]; - const onClick = (index: number, title: string) => { + const onClickTab = ({ title }: { title: string }) => { Toast(title); }; - const onClickDisabled = (index: number, title: string) => { - Toast(title + t('disabled')); - }; - const beforeChange = (name: number) => { if (name === 1) { return false; @@ -172,9 +168,8 @@ export default { ...toRefs(state), t, tabs, - onClick, + onClickTab, beforeChange, - onClickDisabled, }; }, }; diff --git a/src/tab/test/index.spec.tsx b/src/tab/test/index.spec.tsx index 8324fc681..5eb797f19 100644 --- a/src/tab/test/index.spec.tsx +++ b/src/tab/test/index.spec.tsx @@ -45,6 +45,7 @@ test('should emit click-tab event when tab is clicked', async () => { expect.objectContaining({ name: 0, title: 'title1', + disabled: false, }) ); }); diff --git a/src/tabs/Tabs.tsx b/src/tabs/Tabs.tsx index 75cd8da7a..c948cbcfa 100644 --- a/src/tabs/Tabs.tsx +++ b/src/tabs/Tabs.tsx @@ -297,7 +297,16 @@ export default defineComponent({ const { title, disabled } = children[index]; const name = getTabName(children[index], index); + emit('click-tab', { + name, + title, + event, + disabled, + }); + if (disabled) { + // @deprecated + // should be removed in next major version emit('disabled', name, title); } else { callInterceptor({ @@ -309,12 +318,6 @@ export default defineComponent({ }, }); - emit('click-tab', { - name, - title, - event, - }); - // @deprecated // should be removed in next major version emit('click', name, title);