欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue轮播图插件vue-awesome-swiper的使用代码实例

程序员文章站 2023-09-09 11:52:10
最近写vue2.0项目中用到了轮播图的一个插件,也就是vue-awesome-swiper,个人感觉还是比较强大的,swiper官网中的api及配置均可使用(支持3.0),...

最近写vue2.0项目中用到了轮播图的一个插件,也就是vue-awesome-swiper,个人感觉还是比较强大的,swiper官网中的api及配置均可使用(支持3.0),以下说下使用该插件的一些步骤:

第一步安装

npm install vue-awesome-swiper --save

第二部在main.js中引入

import vue from 'vue'
import vueawesomeswiper from 'vue-awesome-swiper'
vue.use(vueawesomeswiper)

然后就可以在组件中使用该插件

<template> 
  <div> 
    <swiper :options="swiperoption" ref="myswiper"> 
      <!-- 这部分放你要渲染的那些内容 --> 
      <swiper-slide v-for="item in items"> 
      </swiper-slide> 
      <!-- 这是轮播的小圆点 --> 
      <div class="swiper-pagination" slot="pagination"></div> 
    </swiper> 
  </div> 
</template> 
<script> 
  import { swiper, swiperslide } from 'vue-awesome-swiper' 
  export default { 
    components: { 
      swiper, 
      swiperslide 
    }, 
    data() { 
      return { 
        swiperoption: { 
        //是一个组件自有属性,如果notnexttick设置为true,组件则不会通过nexttick来实例化swiper,也就意味着你可以在第一时间获取到swiper对象,假如你需要刚加载遍使用获取swiper对象来做什么事,那么这个属性一定要是true 
        notnexttick: true, 
        pagination: '.swiper-pagination', 
        slidesperview: 'auto', 
        centeredslides: true, 
        paginationclickable: true, 
        spacebetween: 30, 
          onslidechangeend: swiper => { 
            //这个位置放swiper的回调方法 
            this.page = swiper.realindex+1; 
            this.index = swiper.realindex; 
          } 
        } 
      } 
    }, 
    //定义这个sweiper对象 
    computed: { 
 
      swiper() { 
       return this.$refs.myswiper.swiper; 
      } 
    }, 
    mounted () { 
      //这边就可以使用swiper这个对象去使用swiper官网中的那些方法 
      this.swiper.slideto(0, 0, false); 
    } 
 
  } 
</script> 
<style> 
</style> 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。