vant ui tab, page jump and scrolling are mutually affected, and the scrolling distance is synchronized with the previous page viewed

Problem Description:

vant ui tab, page jump and scrolling are mutually affected, and the scrolling distance is synchronized with the previous page viewed


solution:

<van-tabs v-model="activeName" sticky>
<!-- 加上sticky就OK         MD被自己蠢哭的一天  -->
  <van-tab title="标签 1" name="a">内容 1</van-tab>
  <van-tab title="标签 2" name="b">内容 2</van-tab>
  <van-tab title="标签 3" name="c">内容 3</van-tab>
</van-tabs>

Please check the documentation next time! ! ! ! ! !

Guess you like

Origin blog.csdn.net/weixin_44693565/article/details/114138243