swiper插件 使用方法vue2
时间: 2023-09-14 20:11:42 浏览: 84
vue引入swiper插件的使用实例
在 Vue2 中使用 Swiper 插件的步骤如下:
1. 安装 Swiper
```
npm install swiper --save
```
2. 在 Vue 组件中引入 Swiper
```javascript
import Swiper from 'swiper'
import 'swiper/dist/css/swiper.css'
export default {
mounted () {
// 初始化 Swiper
new Swiper('.swiper-container', {
// 配置选项
})
}
}
```
3. 在模板中添加 Swiper 容器和滑块
```html
<template>
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">Slide 1</div>
<div class="swiper-slide">Slide 2</div>
<div class="swiper-slide">Slide 3</div>
</div>
</div>
</template>
```
4. 配置 Swiper 选项
在 `new Swiper(...)` 中传入 Swiper 配置选项,例如:
```javascript
new Swiper('.swiper-container', {
direction: 'horizontal',
loop: true,
pagination: {
el: '.swiper-pagination',
clickable: true
}
})
```
这里 `direction` 表示滑动方向、`loop` 表示是否循环滑动、`pagination` 表示是否添加分页器等。
以上就是在 Vue2 中使用 Swiper 插件的基本步骤,可以根据自己的需求进行配置。
阅读全文