这篇文章主要为大家详细介绍了vue轮播图插件vue-awesome-swiper,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
Vue-Awesome-Swiper
轮播图插件,可以同时支持Vue.js(1.X ~ 2.X),兼顾PC和移动端,SPA和SSR。
例子
例子
安装设置
安装Install vue-awesome-swiper
npm install vue-awesome-<strong style="color:transparent">本文来源gao@daima#com搞(%代@#码@网&</strong>swiper --save
vue挂载
// import import Vue from 'vue' import VueAwesomeSwiper from 'vue-awesome-swiper' // or require var Vue = require('vue') var VueAwesomeSwiper = require('vue-awesome-swiper') // mount with global Vue.use(VueAwesomeSwiper) // If used in Nuxt.js/SSR, you should keep it only in browser build environment // The `Process. BROWSER_BUILD` itself is just a feature, it is only valid in Nuxt.js, you need to modify it according to your own procedures, such as: in vue official ssr scaffolding it should be` process.browser` if (process.BROWSER_BUILD) { const VueAwesomeSwiper = require('vue-awesome-swiper/ssr') Vue.use(VueAwesomeSwiper) } // mount with component(can't work in Nuxt.js/SSR) import { swiper, swiperSlide } from 'vue-awesome-swiper' export default { components: { swiper, swiperSlide } }
SPA与SSR中使用方法的区别
SPA通过组件作用,需要借助ref属性查找swiper实例
SSR通过命令作用,需要借助命令参数查找swiper实例
其他配置和事件一致
SSR中的应用
<!-- You can custom the "mySwiper" name used to find the swiper instance in current component --> <div> <div class="swiper-wrapper"> <div class="swiper-slide"> </div></div><div class="swiper-pagination swiper-pagination-bullets"></div></div>
SPA中的应用
<!-- The ref attr used to find the swiper instance --> <!-- slides -->I'm Slide 1I'm Slide 2I'm Slide 3I'm Slide 4I'm Slide 5I'm Slide 6I'm Slide 7<!-- Optional controls --><div class="swiper-pagination"></div><div class="swiper-button-prev"></div><div class="swiper-button-next"></div><div class="swiper-scrollbar"></div>
异步数据例子
I'm Slide {{ slide }}<div class="swiper-pagination"></div>
移动端例子的代码
例子
SSR例子的代码
例子
API
参考官网: http://www.swiper.com.cn/api/index.html
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持gaodaima搞代码网。
以上就是vue轮播图插件vue-awesome-swiper的详细内容,更多请关注gaodaima搞代码网其它相关文章!