mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(Tabs): 修复滑动切换模式下激活选项错误 (#2293)
This commit is contained in:
parent
8af68a0d7a
commit
94e71d1509
@ -327,7 +327,7 @@ VantComponent({
|
|||||||
const child = this.children[currentIndex - 1];
|
const child = this.children[currentIndex - 1];
|
||||||
this.setActive(child.getComputedName());
|
this.setActive(child.getComputedName());
|
||||||
} else if (deltaX < 0 && currentIndex !== tabs.length - 1) {
|
} else if (deltaX < 0 && currentIndex !== tabs.length - 1) {
|
||||||
const child = this.children[currentIndex - 1];
|
const child = this.children[currentIndex + 1];
|
||||||
this.setActive(child.getComputedName());
|
this.setActive(child.getComputedName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user