vue2-swiper

vue2-swiper_第1张图片

import Swiper from './../static/swiper-3.4.0.min.js'

require('./../static/swiper-3.4.0.min.css')

export default {

mounted () {

var swiper = new Swiper('.swiper-container', {

pagination: '.swiper-pagination',

nextButton: '.swiper-button-next',

prevButton: '.swiper-button-prev',

slidesPerView: 1,

paginationClickable: true,

spaceBetween: 30,

loop: true

});

console.log(swiper)

}

}



html {

height: 100%;

}

body {

display: flex;

align-items: center;

justify-content: center;

height: 100%;

}

#app {

color: #2c3e50;

margin-top: -100px;

max-width: 600px;

font-family: Source Sans Pro, Helvetica, sans-serif;

text-align: center;

}

#app a {

color: #42b983;

text-decoration: none;

}

.logo {

width: 100px;

height: 100px

}

.swiper-container{

width: 500px;

height: 360px;

}



vue2-swiper_第2张图片

你可能感兴趣的:(vue2-swiper)