Swiper简介
Swiper常用于移动端网站的内容触摸滑动。
Swiper是纯javascript打造的滑动特效插件,面向手机、平板电脑等移动终端。
Swiper能实现触屏焦点图、触屏Tab切换、触屏多图切换等常用效果。
Swiper开源、免费、稳定、使用简单、功能强大,是架构移动终端网站的重要选择!
解决vue中使用swiper插件,在引入swiper插件后,发现无法正常运行问题
这次我们模拟从后台取下数据,然后数据绑定在swiper标签中。
Swiper常用于移动端网站的内容触摸滑动。
Swiper是纯javascript打造的滑动特效插件,面向手机、平板电脑等移动终端。
Swiper能实现触屏焦点图、触屏Tab切换、触屏多图切换等常用效果。
Swiper开源、免费、稳定、使用简单、功能强大,是架构移动终端网站的重要选择!
解决vue中使用swiper插件,在引入swiper插件后,发现无法正常运行问题
这次我们模拟从后台取下数据,然后数据绑定在swiper标签中。
@H_403_24@
import Swiper from "../../static/js/swiper-3.4.0.min.js";
import header from 'components/header.vue';
export default {
components : {
abc : header
},data(){
return {
swiper:""
}
},mounted(){
this.$http.get("http://www.vrserver.applinzi.com/aixianfeng/apihome.PHP").then(function(res){
this.swiper=res.data.data.slide;
var mySwiper = new Swiper('.swiper-container',{
autoplay: 2000,//可选选项,自动滑动
//分页器
pagination : '.swiper-pagination',paginationClickable :true,observer: true
})
})
}
}