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

Vue中如何实现轮播图的示例代码

程序员文章站 2022-07-05 20:52:06
这个功能我感觉在任何项目中都会涉及到,今天我就把我的实现方法跟大家分享一下,有不对的地方还请指出,我好更新。 下面是整体代码,我把轮播图单独做了一个组件,大家可以拿来...

这个功能我感觉在任何项目中都会涉及到,今天我就把我的实现方法跟大家分享一下,有不对的地方还请指出,我好更新。

下面是整体代码,我把轮播图单独做了一个组件,大家可以拿来就用,具体代码如下:

<template>
  <div class="content">
    <div class="focus">
     <!-- focus begin -->
     <swiper :options="swiperoption">
<!-- map是数组 这里我们用v-for把数据循环出来 -->
      <swiper-slide v-for="item in map">
       <a :href="item.i_route" rel="external nofollow" target="_blank">![](item.i_url)</a>
     </swiper-slide>
      <div class="swiper-pagination" slot="pagination"></div>
     </swiper>
     <!-- focus end -->
     </div>
  </div>
</template>

<script>
//下面我们引用两个插件,当然,在使用之前请先安装
//安装方法:npm install vue-awesome-swiper --save

 import vueawesomeswiper from 'vue-awesome-swiper'
 import { swiper, swiperslide } from 'vue-awesome-swiper'
 export default {
  data() {
   return {
    swiperoption: {
     autoplay: 5000,
     initialslide: 1,
     loop: true,
     pagination: '.swiper-pagination',
     paginationclickable: true,
     onslidechangeend: swiper => {
      //console.log('onslidechangeend', swiper.realindex)
     }
    }
   }
  },
  mounted () {
   this.bannerinfo();
  },
  components: {
   swiper,
   swiperslide
  },
  methods: {
   //轮播图初始化
   bannerinfo() {
//通过接口获取图片数据
     this.$fetch('get/image/list').then(res => {
      if(res.errcode == 200) {
       this.map = res.errdata;
      }
     });
   }
  }
 }

</script>

以上就是实现轮播图的全部代码,有兴趣的朋友可以试试看啦,希望大家继续关注我们的网站!想要学习vue的可以继续关注本站。