码迷,mamicode.com
首页 > 其他好文 > 详细

vue 中swiper 的引入

时间:2018-02-07 11:55:58      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:import   ini   css   first   cal   get   插件   art   原因   

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

先安装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 的引入

标签:import   ini   css   first   cal   get   插件   art   原因   

原文地址:https://www.cnblogs.com/qq735675958/p/8425485.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!