您好,登錄后才能下訂單哦!
vue中怎么使用vue-awesome-swiper輪播圖插件,相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
第一步安裝
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"> <!-- 這部分放你要渲染的那些內(nèi)容 --> <swiper-slide v-for="item in items"> </swiper-slide> <!-- 這是輪播的小圓點(diǎn) --> <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: { //是一個(gè)組件自有屬性,如果notNextTick設(shè)置為true,組件則不會(huì)通過NextTick來實(shí)例化swiper,也就意味著你可以在第一時(shí)間獲取到swiper對(duì)象,假如你需要?jiǎng)偧虞d遍使用獲取swiper對(duì)象來做什么事,那么這個(gè)屬性一定要是true notNextTick: true, pagination: '.swiper-pagination', slidesPerView: 'auto', centeredSlides: true, paginationClickable: true, spaceBetween: 30, onSlideChangeEnd: swiper => { //這個(gè)位置放swiper的回調(diào)方法 this.page = swiper.realIndex+1; this.index = swiper.realIndex; } } } }, //定義這個(gè)sweiper對(duì)象 computed: { swiper() { return this.$refs.mySwiper.swiper; } }, mounted () { //這邊就可以使用swiper這個(gè)對(duì)象去使用swiper官網(wǎng)中的那些方法 this.swiper.slideTo(0, 0, false); } } </script> <style> </style>
看完上述內(nèi)容,你們掌握vue中怎么使用vue-awesome-swiper輪播圖插件的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。