npm install vue-awesome-swiper --save
这里我只说一下 import的
import Vue from 'vue'
import VueAwesomeSwiper from 'vue-awesome-swiper'
Vue.use(VueAwesomeSwiper) //全局引用一下
来一张图:
import { swiper, swiperSlide } from 'vue-awesome-swiper' (记得components注册)
export default {
components: {
swiper,
swiperSlide
},
name: 'carrousel',
data () {
return {
swiperOption: {
loop: true,
autoplay: 1000,
paginationClickable: true,
preventClicks: false,
noSwiping: true,
autoplayDisableOnInteraction: false
},
swiperSlides: [1, 2, 3, 4, 5]
}
}
}
这是这几天总结了一下,把以前的删掉了!!但愿能帮到大家!html