-
-
-
Available (0)
-
Unavailable (0)
@@ -540,8 +574,11 @@ exports[`should use custom src when using empty-image prop 1`] = `
-
-
diff --git a/packages/vant/src/empty/test/__snapshots__/demo.spec.ts.snap b/packages/vant/src/empty/test/__snapshots__/demo.spec.ts.snap
index 4ea291ef8..e12ef2682 100644
--- a/packages/vant/src/empty/test/__snapshots__/demo.spec.ts.snap
+++ b/packages/vant/src/empty/test/__snapshots__/demo.spec.ts.snap
@@ -18,28 +18,34 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
Error
-
Network
-
Search
@@ -52,8 +58,11 @@ exports[`should render demo and match snapshot 1`] = `
-
@@ -65,13 +74,19 @@ exports[`should render demo and match snapshot 1`] = `
-
-
diff --git a/packages/vant/src/icon/test/__snapshots__/demo.spec.ts.snap b/packages/vant/src/icon/test/__snapshots__/demo.spec.ts.snap
index 83e09dba7..edb9a23c4 100644
--- a/packages/vant/src/icon/test/__snapshots__/demo.spec.ts.snap
+++ b/packages/vant/src/icon/test/__snapshots__/demo.spec.ts.snap
@@ -9,37 +9,45 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
Demo
-
Basic
-
Outline
-
Filled
@@ -54,8 +62,11 @@ exports[`should render demo and match snapshot 1`] = `
-
@@ -130,18 +141,27 @@ exports[`should render demo and match snapshot 1`] = `
-
-
-
diff --git a/packages/vant/src/index-bar/test/__snapshots__/demo.spec.ts.snap b/packages/vant/src/index-bar/test/__snapshots__/demo.spec.ts.snap
index ad6ac77c2..23aacda5a 100644
--- a/packages/vant/src/index-bar/test/__snapshots__/demo.spec.ts.snap
+++ b/packages/vant/src/index-bar/test/__snapshots__/demo.spec.ts.snap
@@ -7,19 +7,23 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
Basic Usage
-
Custom Index List
@@ -32,8 +36,11 @@ exports[`should render demo and match snapshot 1`] = `
-
@@ -901,8 +908,11 @@ exports[`should render demo and match snapshot 1`] = `
-
diff --git a/packages/vant/src/list/test/__snapshots__/demo.spec.ts.snap b/packages/vant/src/list/test/__snapshots__/demo.spec.ts.snap
index 89b815911..bc6484bfd 100644
--- a/packages/vant/src/list/test/__snapshots__/demo.spec.ts.snap
+++ b/packages/vant/src/list/test/__snapshots__/demo.spec.ts.snap
@@ -7,28 +7,34 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
Basic Usage
-
Error Info
-
PullRefresh
@@ -41,8 +47,11 @@ exports[`should render demo and match snapshot 1`] = `
-
-
-
diff --git a/packages/vant/src/pull-refresh/test/__snapshots__/demo.spec.ts.snap b/packages/vant/src/pull-refresh/test/__snapshots__/demo.spec.ts.snap
index d499f5d2d..9dddee2e2 100644
--- a/packages/vant/src/pull-refresh/test/__snapshots__/demo.spec.ts.snap
+++ b/packages/vant/src/pull-refresh/test/__snapshots__/demo.spec.ts.snap
@@ -7,28 +7,34 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
Basic Usage
-
Success Tip
-
Custom Tips
@@ -41,8 +47,11 @@ exports[`should render demo and match snapshot 1`] = `
-
@@ -57,13 +66,19 @@ exports[`should render demo and match snapshot 1`] = `
-
-
diff --git a/packages/vant/src/tab/Tab.tsx b/packages/vant/src/tab/Tab.tsx
index 2d8272dcc..b98821de4 100644
--- a/packages/vant/src/tab/Tab.tsx
+++ b/packages/vant/src/tab/Tab.tsx
@@ -22,6 +22,8 @@ import { TABS_KEY } from '../tabs/Tabs';
// Composables
import { useParent } from '@vant/use';
+import { useId } from '../composables/use-id';
+import { useExpose } from '../composables/use-expose';
import { routeProps } from '../composables/use-route';
import { TAB_STATUS_KEY } from '../composables/use-tab-status';
@@ -49,6 +51,7 @@ export default defineComponent({
props: tabProps,
setup(props, { slots }) {
+ const id = useId();
const inited = ref(false);
const { parent, index } = useParent(TABS_KEY);
@@ -92,6 +95,7 @@ export default defineComponent({
provide(TAB_STATUS_KEY, active);
return () => {
+ const label = `${parent.id}-${index.value}`;
const { animated, swipeable, scrollspy, lazyRender } = parent.props;
if (!slots.default && !animated) {
@@ -103,9 +107,12 @@ export default defineComponent({
if (animated || swipeable) {
return (
{slots.default?.()}
@@ -115,8 +122,17 @@ export default defineComponent({
const shouldRender = inited.value || scrollspy || !lazyRender;
const Content = shouldRender ? slots.default?.() : null;
+ useExpose({ id });
+
return (
-
+
{Content}
);
diff --git a/packages/vant/src/tab/test/__snapshots__/demo.spec.ts.snap b/packages/vant/src/tab/test/__snapshots__/demo.spec.ts.snap
index c65453b4d..907c86386 100644
--- a/packages/vant/src/tab/test/__snapshots__/demo.spec.ts.snap
+++ b/packages/vant/src/tab/test/__snapshots__/demo.spec.ts.snap
@@ -8,37 +8,45 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
Tab 1
-
Tab 2
-
Tab 3
-
Tab 4
@@ -51,24 +59,36 @@ exports[`should render demo and match snapshot 1`] = `
-
content of tab 1
-
-
-
@@ -82,28 +102,34 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
Tab 1
-
Tab 2
-
Tab 3
@@ -116,19 +142,28 @@ exports[`should render demo and match snapshot 1`] = `
-
-
content of tab 2
-
@@ -142,73 +177,89 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line van-tabs__nav--complete"
aria-orientation="horizontal"
>
-
Tab 1
-
Tab 2
-
Tab 3
-
Tab 4
-
Tab 5
-
Tab 6
-
Tab 7
-
Tab 8
@@ -221,44 +272,68 @@ exports[`should render demo and match snapshot 1`] = `
-
content of tab 1
-
-
-
-
-
-
-
@@ -272,28 +347,34 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
Tab 1
-
Tab 2
-
Tab 3
@@ -306,19 +387,28 @@ exports[`should render demo and match snapshot 1`] = `
-
content of tab 1
-
-
@@ -332,28 +422,34 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--card"
aria-orientation="horizontal"
>
-
Tab 1
-
Tab 2
-
Tab 3
@@ -362,19 +458,28 @@ exports[`should render demo and match snapshot 1`] = `
-
content of tab 1
-
-
@@ -388,19 +493,23 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
Tab 1
-
Tab 2
@@ -413,14 +522,20 @@ exports[`should render demo and match snapshot 1`] = `
-
content of tab 1
-
@@ -436,37 +551,45 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
Tab 1
-
Tab 2
-
Tab 3
-
Tab 4
@@ -481,24 +604,36 @@ exports[`should render demo and match snapshot 1`] = `
-
content of tab 1
-
-
-
@@ -512,10 +647,12 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
@@ -523,10 +660,12 @@ exports[`should render demo and match snapshot 1`] = `
Tab
-
@@ -541,14 +680,20 @@ exports[`should render demo and match snapshot 1`] = `
-
content of tab 1
-
@@ -562,7 +707,8 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
-
-
-
@@ -619,8 +771,11 @@ exports[`should render demo and match snapshot 1`] = `
@@ -628,14 +783,20 @@ exports[`should render demo and match snapshot 1`] = `
@@ -651,7 +812,8 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
-
-
-
@@ -708,8 +876,11 @@ exports[`should render demo and match snapshot 1`] = `
@@ -717,14 +888,20 @@ exports[`should render demo and match snapshot 1`] = `
@@ -742,73 +919,89 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line van-tabs__nav--complete"
aria-orientation="horizontal"
>
-
Tab 1
-
Tab 2
-
Tab 3
-
Tab 4
-
Tab 5
-
Tab 6
-
Tab 7
-
Tab 8
@@ -823,43 +1016,67 @@ exports[`should render demo and match snapshot 1`] = `
-
content of tab 1
-
content of tab 2
-
content of tab 3
-
content of tab 4
-
content of tab 5
-
content of tab 6
-
content of tab 7
-
content of tab 8
@@ -873,37 +1090,45 @@ exports[`should render demo and match snapshot 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
Tab 1
-
Tab 2
-
Tab 3
-
Tab 4
@@ -916,24 +1141,36 @@ exports[`should render demo and match snapshot 1`] = `
-
content of tab 1
-
-
-
diff --git a/packages/vant/src/tab/test/__snapshots__/index.spec.tsx.snap b/packages/vant/src/tab/test/__snapshots__/index.spec.tsx.snap
index 850bf72aa..e3b37943d 100644
--- a/packages/vant/src/tab/test/__snapshots__/index.spec.tsx.snap
+++ b/packages/vant/src/tab/test/__snapshots__/index.spec.tsx.snap
@@ -2,13 +2,19 @@
exports[`should allow to disable lazy-render prop 1`] = `
-
-
@@ -17,14 +23,20 @@ exports[`should allow to disable lazy-render prop 1`] = `
exports[`should allow to disable lazy-render prop 2`] = `
-
Text
-
Text
@@ -39,28 +51,34 @@ exports[`should allow to set name prop 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
title1
-
title2
-
title3
@@ -73,19 +91,28 @@ exports[`should allow to set name prop 1`] = `
-
Text
-
-
@@ -103,9 +130,12 @@ DOMWrapper {
"_values": Object {},
},
"wrapperElement":
Text
@@ -120,10 +150,12 @@ exports[`should not render empty tab 1`] = `
`;
exports[`should render badge prop correctly 1`] = `
-
@@ -142,10 +174,12 @@ exports[`should render nav-leftănav-right slot correctly 1`] = `
aria-orientation="horizontal"
>
Custom nav left
-
Title
@@ -167,28 +201,34 @@ exports[`should switch tab after click the tab title 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
title1
-
title2
-
title3
@@ -201,19 +241,28 @@ exports[`should switch tab after click the tab title 1`] = `
-
Text
-
-
@@ -228,28 +277,34 @@ exports[`should switch tab after click the tab title 2`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
title1
-
title2
-
title3
@@ -262,20 +317,29 @@ exports[`should switch tab after click the tab title 2`] = `
-
Text
-
Text
-
@@ -290,7 +354,8 @@ exports[`swipe switch tab after swiping tab content 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
-
-
@@ -338,8 +408,11 @@ exports[`swipe switch tab after swiping tab content 1`] = `
@@ -347,8 +420,11 @@ exports[`swipe switch tab after swiping tab content 1`] = `
@@ -365,7 +441,8 @@ exports[`swipe switch tab after swiping tab content 2`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
-
-
@@ -413,8 +495,11 @@ exports[`swipe switch tab after swiping tab content 2`] = `
@@ -422,8 +507,11 @@ exports[`swipe switch tab after swiping tab content 2`] = `
@@ -443,7 +531,8 @@ exports[`swipe switch tab after swiping tab content 3`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
-
-
@@ -491,8 +585,11 @@ exports[`swipe switch tab after swiping tab content 3`] = `
@@ -500,8 +597,11 @@ exports[`swipe switch tab after swiping tab content 3`] = `
diff --git a/packages/vant/src/tab/test/__snapshots__/insert.spec.tsx.snap b/packages/vant/src/tab/test/__snapshots__/insert.spec.tsx.snap
index a11855ee2..4fc9fd9f0 100644
--- a/packages/vant/src/tab/test/__snapshots__/insert.spec.tsx.snap
+++ b/packages/vant/src/tab/test/__snapshots__/insert.spec.tsx.snap
@@ -7,28 +7,34 @@ exports[`should render Tab inside a component correctly 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
2
-
1
-
3
@@ -41,19 +47,28 @@ exports[`should render Tab inside a component correctly 1`] = `
-
1
-
-
@@ -68,28 +83,34 @@ exports[`should render correctly after inserting a tab 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
1
-
2
-
3
@@ -102,20 +123,29 @@ exports[`should render correctly after inserting a tab 1`] = `
-
-
3
@@ -131,19 +161,23 @@ exports[`should render correctly after inserting a tab with name 1`] = `
class="van-tabs__nav van-tabs__nav--line"
aria-orientation="horizontal"
>
-
bar
-
foo
@@ -156,14 +190,20 @@ exports[`should render correctly after inserting a tab with name 1`] = `
-
bar
-
foo
diff --git a/packages/vant/src/tabs/Tabs.tsx b/packages/vant/src/tabs/Tabs.tsx
index 1bfc2fda5..b56d0e1f1 100644
--- a/packages/vant/src/tabs/Tabs.tsx
+++ b/packages/vant/src/tabs/Tabs.tsx
@@ -44,6 +44,7 @@ import {
useEventListener,
onMountedOrActivated,
} from '@vant/use';
+import { useId } from '../composables/use-id';
import { route, RouteProps } from '../composables/use-route';
import { useRefs } from '../composables/use-refs';
import { useExpose } from '../composables/use-expose';
@@ -123,6 +124,7 @@ export default defineComponent({
const navRef = ref
();
const wrapRef = ref();
+ const id = useId();
const scroller = useScrollParent(root);
const [titleRefs, setTitleRefs] = useRefs();
const { children, linkChildren } = useChildren(TABS_KEY);
@@ -359,12 +361,14 @@ export default defineComponent({
const renderNav = () =>
children.map((item, index) => (
(
{renderText()}
diff --git a/packages/vant/src/tabs/types.ts b/packages/vant/src/tabs/types.ts
index 55ac0d450..6181f4d89 100644
--- a/packages/vant/src/tabs/types.ts
+++ b/packages/vant/src/tabs/types.ts
@@ -11,6 +11,7 @@ export type TabsClickTabEventParams = {
};
export type TabsProvide = {
+ id: string;
props: TabsProps;
setLine: () => void;
onRendered: (name: string | number, title?: string) => void;
diff --git a/packages/vant/src/vue-tsx-shim.d.ts b/packages/vant/src/vue-tsx-shim.d.ts
index a3edbabc0..6bb2fa09e 100644
--- a/packages/vant/src/vue-tsx-shim.d.ts
+++ b/packages/vant/src/vue-tsx-shim.d.ts
@@ -4,6 +4,7 @@ type EventHandler = (...args: any[]) => void;
declare module 'vue' {
interface ComponentCustomProps {
+ id?: string;
role?: string;
tabindex?: number;
onClick?: EventHandler;