mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(Tabs): incorrect nav scroll animation in some cases (#11116)
* fix(Tabs): incorrect nav scroll animation in some cases * chore: fix snapshot
This commit is contained in:
parent
8f12b6c715
commit
d88c04cae4
@ -346,7 +346,7 @@ exports[`should have two "van-coupon-list__empty" classes when render coupon lis
|
||||
</span>
|
||||
</div>
|
||||
<div class="van-tabs__line"
|
||||
style="transform: translateX(50px) translateX(-50%); transition-duration: 0.3s;"
|
||||
style="transform: translateX(50px) translateX(-50%);"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -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(
|
||||
|
Loading…
x
Reference in New Issue
Block a user