diff --git a/packages/vant/src/coupon-list/test/__snapshots__/index.spec.ts.snap b/packages/vant/src/coupon-list/test/__snapshots__/index.spec.ts.snap
index 6dcf78359..5cd2ac886 100644
--- a/packages/vant/src/coupon-list/test/__snapshots__/index.spec.ts.snap
+++ b/packages/vant/src/coupon-list/test/__snapshots__/index.spec.ts.snap
@@ -346,7 +346,7 @@ exports[`should have two "van-coupon-list__empty" classes when render coupon lis
diff --git a/packages/vant/src/tabs/Tabs.tsx b/packages/vant/src/tabs/Tabs.tsx
index bbde8fd20..10ddfbdf1 100644
--- a/packages/vant/src/tabs/Tabs.tsx
+++ b/packages/vant/src/tabs/Tabs.tsx
@@ -253,7 +253,14 @@ export default defineComponent({
const newName = getTabName(newTab, newIndex);
const shouldEmitChange = state.currentIndex !== null;
- state.currentIndex = newIndex;
+ if (state.currentIndex !== newIndex) {
+ state.currentIndex = newIndex;
+
+ if (!skipScrollIntoView) {
+ scrollIntoView();
+ }
+ setLine();
+ }
if (newName !== props.active) {
emit('update:active', newName);
@@ -263,11 +270,6 @@ export default defineComponent({
}
}
- if (!skipScrollIntoView) {
- scrollIntoView();
- }
- setLine();
-
// scroll to correct position
if (stickyFixed && !props.scrollspy) {
setRootScrollTop(