vue-awesome-swipe 基于vue使用的轮播组件 使用
Posted 凉生丿墨染
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-awesome-swipe 基于vue使用的轮播组件 使用相关的知识,希望对你有一定的参考价值。
npm install vue-awesome-swiper --save //基于vue使用的轮播组件
<template> <swiper :options="swiperOption" ref="mySwiper"> <swiper-slide v-for="(banner,index) in banners" :key="index"> <img v-if="banner.src" :src="banner.src"> </swiper-slide> <div class="swiper-pagination" slot="pagination"></div> </swiper> </template> <script> import { swiper, swiperSlide } from ‘vue-awesome-swiper‘ export default { data () { return { banners: [{ src: require(‘../img/1.jpg‘) }, { src: require(‘../img/4.jpg‘) }, { src: require(‘../img/5.jpg‘) }], swiperOption: { notNextTick: true, autoplay: 1000, pagination: ‘.swiper-pagination‘, paginationClickable: true, mousewheelControl: true, observeParents: true, onSlideChangeEnd: swiper => { this.page = swiper.realIndex + 1 this.index = swiper.realIndex } } } }, components: { swiper, swiperSlide } } </script> <style> * { margin: 0; padding: 0; } .swiper-wrapper { margin-top: 10px; height: 230px; } .swiper-wrapper img { width: 100%; height: 100%; } </style>
以上是关于vue-awesome-swipe 基于vue使用的轮播组件 使用的主要内容,如果未能解决你的问题,请参考以下文章
vue-awesome-swiper - 基于vue实现h5滑动翻页效果