npm install vue-awesome-swiper --save
import VueAwesomeSwiper from 'vue-awesome-swiper'
Vue.use(VueAwesomeSwiper)
import 'swiper/dist/css/swiper.css'
(css 不顯示的問題可能就在這) 組件裏引入:css
import 'swiper/dist/css/swiper.css' //在全局沒引入,這裏記得要! import { swiper, swiperSlide } from 'vue-awesome-swiper' export default { components: { swiper, swiperSlide } }
template:vue
<swiper :options="swiperOption"> <swiper-slide>I'm Slide 1</swiper-slide> <swiper-slide>I'm Slide 2</swiper-slide> <swiper-slide>I'm Slide 3</swiper-slide> <div class="swiper-pagination" slot="pagination"></div> </swiper>
script:npm
export default { data() { return { swiperOption: { // 全部的參數同 swiper 官方 api 參數同樣 // } } }, ... }
重點在於 swiperOption 裏面的變化,區別看下圖:
api
原來 pagination 和 autoplay 要這樣配置!
我原來就是在這兩處錯了,致使 pagination 不顯示,圖片不輪播。ide
出錯前:
糾正後:
spa
弄到晚上12點,才弄明白原來 Swiper 版本區分了組件和普通版本,不能看照原來的經驗寫了。
發現網上關於最新 vue-awesome-swiper就兩三篇,並且沒說清楚。因而寫下這篇,但願對你們有幫助。插件