Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.9k views
in Technique[技术] by (71.8m points)

在vue3中使用swiper,如何实现上一页下一页或者跳转到指定页面的功能?

在vue3中使用swiper,如何实现上一页下一页或者跳转到指定页面的功能?
部分代码:
`<div class="swiper-container">

  <!-- 顶部轮播 -->
  <swiper ref="myswiper"> 
      <swiper-slide>1</swiper-slide>
      <swiper-slide>1</swiper-slide>
      <swiper-slide>1</swiper-slide>
      <swiper-slide>1</swiper-slide>
  </swiper>
  <button @click="nextStep"></button>
  `
  js:
  `setup(){
    const myswiper = ref(null);
    const nextStep = ()=>{
        console.log(myswiper);
        console.log(myswiper.value);
        myswiper.slideTo(0, 1000, false);
    }
    return {myswiper,nextStep}
  }`

随便写的,实在不知道怎么写,可以帮我看看如何才能实现么


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...