
具体使用和配置如下
```build :{
vendor: ['vue-awesome-swiper']
},
plugins: [{src: '~plugins/vue-awesome-swiper.js', ssr: false}],
css: ['swiper/dist/css/swiper.css']
</div>
<div class="swiper-pagination swiper-pagination-bullets"></div>
</div>
export default {
data () {
return {
swiperOption: {
pagination: '.swiper-pagination',
slidesPerView: 5,
centeredSlides: true,
paginationClickable: true,
spaceBetween: 18
},
swiperSlides: [1, 2, 3, 4, 5, 6, 7, 8, 9]
}
}
}
```
最后,请原谅我用了中文介绍我所遇到的问题,因为我英文确实比较差,请见谅!对了 这个页面我有用三个demo
你虽然循环出了多个实例,但是实际给每个实例绑定的名字却都是一样的,所以你需要指定实例名称,参考此问题


swiperOption: {
pagination: '.swiper-pagination',
effect: 'coverflow',
grabCursor: true,
centeredSlides: true,
slidesPerView: 'auto',
loop: true,
coverflow: {
rotate: 25,
stretch: 0,
depth: 100,
modifier: 1,
slideShadows: true
}
}
pagination 没有去掉 但在html里面注释了,还是会影响到平铺的点点,只有把这个key去掉之后,才相互不影响了,而且这个点点的className好像不可以改哈

pagination 作为参数传入时,可以指定不同的名字,本身的 class name 更多作用样式来使用
另外,可以升级到 v3.0.0 以上了。
@surmon-china

作者 您好,是这样的 我之前使用nuxt后发现 nuxt不能兼容IE 后面改回使用vue+ssr ,现在在vue的基础上使用了 swiper 出现了这个问题,当我把
<swiper>
<swiper-slide></swiper-slide>
</swiper>
注释掉后就没问题了,有人提出过这个问题吗 有什么好的解决方案吗 麻烦了
SSR 下不可使用 组件!
@surmon-china 但我现在使用组件也没问题喔 莫非只能和nuxt那样使用吗,但我引入时应该如何配置或者说引入
你看过文档吗,SSR 中组件只能支持不依赖 window 对象的,所有依赖 window 的元素只能以 directive 处理,所以 SSR 就是为 SSR 提供的,组件是为 SPA 提供的!
如果还有更多问题,看文档,官方文档!
@surmon-china 有看的 只是 当我用文档 ssr的方式引入时,在我的组件修改参数swiperOption{}则不会起到作用,其他和nuxt的方式一样的 ,没有任何报错和警告
具体 如下
in entry-client.js
import 'swiper/dist/css/swiper.css'
if (process.browser) {
const VueAwesomeSwiper = require('vue-awesome-swiper/dist/ssr')
Vue.use(VueAwesomeSwiper)
}
in component
<div v-swiper="swiperOption" :instanceName="'inforSlide'" id="homeSlide">
<div class="swiper-wrapper">
<div class="swiper-slide" v-for="banner in banners">
<img :src="banner">
</div>
</div>
<div class="swiper-pagination swiper-pagination-bullets"></div>
</div>
export default {
data () {
return {
banners: ['/', '/', '/'],
swiperOption: {
pagination: '.swiper-pagination',
paginationClickable: true,
grabCursor: true,
nextButton: '.swiper-button-next',
prevButton: '.swiper-button-prev',
// Enable debugger
debugger: true,
loop: true
}
}
}
}


当然 我想说要的不是指这个问题 而是我的配置并不是都没有效果,是部分失效 如:
data () {
return {
banners: ['/', '/', '/'],
swiperOption: {
effect: 'coverflow',
grabCursor: true,
centeredSlides: true,
slidesPerView: 'auto',
loop: true,
coverflow: { //整个对象 失效
rotate: 25,
stretch: 0,
depth: 100,
modifier: 1,
slideShadows: true
}
}
}
}


难道你忽略了,我在这个页面给你留言的 升级到 v3.0.0 了吗。
然后能看到首页, v3.0.0 基于 Swiper4 吗。
你能认真点吗。
@surmon-china
一直用的是这个...

据我所知,coverflow 这个 API 已经更新为 http://idangero.us/swiper/api/#coverflow-effect
,所以???...
@surmon-china ...我看到的swiper3.0的api..因为之前用的文档页没关闭过...好吧 我找找一些不同的地方 谢谢帮助!!
你好 我

我每个swiper都挂了相对应的实例 但我调用其中某一个this.customSwiperInstanceName0.autoplay.stop()会报错提示 autoplay is not defined! 请问怎么处理
这个问题似乎没有解决
Most helpful comment
据我所知,
coverflow这个 API 已经更新为 http://idangero.us/swiper/api/#coverflow-effect,所以???...