vue 中swiper 的引入

Posted qq735675958

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 中swiper 的引入相关的知识,希望对你有一定的参考价值。

最近碰到需要一个轮播的组件,在网上找了半天,也安装了一下午,各种报错,现在终于弄好了,方法如下。

先安装swiper vue 版 cnpm i  vue-awesome-swiper --save 

版本是用最新4.X 的。

在main.js中如下引入

import‘./../static/css/swiper.min.css‘    这个css文件是手动下载的 , 在style 中引入样式会出问题,一直没解决,不知道什么原因,希望有人能解答
import VueAwesomeSwiper from ‘vue-awesome-swiper‘     引入js  

组件

<template>
	<div>
		<div class="sWipe">
		  <swiper :options="swiperOption" ref="mySwiper" class="swipeCont">
		    <!-- slides -->
		    <swiper-slide v-for="(tag,key) in list" :key="key">
		    		<img :src="tag.img" />
		    </swiper-slide>
		    
		    <!-- Optional controls -->
		    <div class="swiper-pagination"  slot="pagination"></div>
		    <div class="swiper-button-prev" slot="button-prev"></div>
		    <div class="swiper-button-next" slot="button-next"></div>
		    <!-- 如果需要滚动条 -->
    		<div class="swiper-scrollbar"></div>
		  </swiper>
	  </div>
  </div>
</template>

<script>
	
  export default {
    name: ‘carrousel‘,
    data() {
      return {
      	list: [
	            { img: ‘https://qiniu.epipe.cn/5456575529551388672?imageslim&imageView2/1/w/750/h/360‘ },
	            { img: ‘https://qiniu.epipe.cn/5430983074181545984?imageslim&imageView2/1/w/750/h/360‘ },
	            { img: ‘https://qiniu.epipe.cn/5464226412548325376?imageslim&imageView2/1/w/750/h/360‘ }
          ],
        swiperOption: {
        	pagination: {
			      el: ‘.swiper-pagination‘,
			    },
			    navigation: {
			      nextEl: ‘.swiper-button-next‘,
			      prevEl: ‘.swiper-button-prev‘,
			    },
			    // 如果需要滚动条
			    scrollbar: {
			      el: ‘.swiper-scrollbar‘,
			    },
			    loop : true,
			    autoplay: {
				    delay: 1000,//1秒切换一次
				    disableOnInteraction: false,
				  },
		        // NotNextTick is a component‘s own property, and if notNextTick is set to true, the component will not instantiate the swiper through NextTick, which means you can get the swiper object the first time (if you need to use the get swiper object to do what Things, then this property must be true)
		        // notNextTick是一个组件自有属性,如果notNextTick设置为true,组件则不会通过NextTick来实例化swiper,也就意味着你可以在第一时间获取到swiper对象,假如你需要刚加载遍使用获取swiper对象来做什么事,那么这个属性一定要是true
		        notNextTick: true,
		        // swiper configs 所有的配置同swiper官方api配置
		        setWrapperSize :true,
		        paginationClickable :true,
		        // if you need use plugins in the swiper, you can config in here like this
		        // 如果自行设计了插件,那么插件的一些配置相关参数,也应该出现在这个对象中,如下debugger
		        debugger: true,
		        // swiper callbacks
		        // swiper的各种回调函数也可以出现在这个对象中,和swiper官方一样
		        onTransitionStart(swiper){
		          console.log(swiper)
		        },
        }
      }
    },
    // you can find current swiper instance object like this, while the notNextTick property value must be true
    // 如果你需要得到当前的swiper对象来做一些事情,你可以像下面这样定义一个方法属性来获取当前的swiper对象,同时notNextTick必须为true
    computed: {
      swiper() {
        return this.$refs.mySwiper.swiper
      }
    },
    mounted() {
      // you can use current swiper instance object to do something(swiper methods)
      // 然后你就可以使用当前上下文内的swiper对象去做你想做的事了
//    console.log(‘this is current swiper instance object‘, this.swiper)
//    this.swiper.slideTo(0, 1000, false)
    }
  }
</script>

<style scoped>
		
	.swipeCont{
		height: 160px;
	}
	
</style>

这样就可以正常使用了 ,可以写成组件用props 来替换对应的数据。

import‘./../static/css/swiper.min.css‘    这个css文件是手动下载的 , 在style 中直接引入样式会出问题,一直没解决,不知道什么原因,希望有人能解答。

 

以上是关于vue 中swiper 的引入的主要内容,如果未能解决你的问题,请参考以下文章

vue中引入swiper

vue 中swiper 的引入

vue单文件组件怎么引入swiper.js?

vue 怎么挂载swiper

Vue中引入swiper插件报错:To install it, you can run: npm install --save swiper/css/swiper.css

Vue中引入swiper插件报错:To install it, you can run: npm install --save swiper/css/swiper.css