fix(Tabs): 修复滑动切换模式下激活选项错误 (#2293)

This commit is contained in:
Mondo 2019-11-13 15:10:31 +08:00 committed by rex
parent 8af68a0d7a
commit 94e71d1509

View File

@ -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());
} }
} }