When using the Vant Tab component, IOS cannot swipe left or right, Android can.

No solution was found in official issues.

The following is your own solution:

.van-tabs__wrap {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
 }
  .van-tabs__wrap--scrollable {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
 .van-tabs__nav {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
Copy the code