swiper 安装及使用

Posted jy13638593346

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swiper 安装及使用相关的知识,希望对你有一定的参考价值。

1.  安装

技术分享图片

 

2. 使用

技术分享图片

<template>
  <div class="wrapper">
    <swiper :options="swiperOption" v-if="showSwiper">
    <!-- slides -->
      <swiper-slide v-for="item of list">
        <img class="swiper-img" :src="item.imgUrl"/>
      </swiper-slide>
        <!-- Optional controls -->
      <div class="swiper-pagination"  slot="pagination"></div>
      </swiper>
  </div>
</template>
<script>
export default {
  name: HomeSwiper,
  data () {
    return {
      swiperOption: {
        pagination: .swiper-pagination,
    loop:true //连续滚动
      }
  }
}
</script>

 

以上是关于swiper 安装及使用的主要内容,如果未能解决你的问题,请参考以下文章

swiper按钮点击无效及控制器无效问题

react 中使用Swiper 6.3.3 自动滚屏,鼠标悬停

react swiper 基本使用指南 (长期更新案例代码,也可以联系提供代码)

vue 安装依赖及卸载依赖

续:纠正:ubuntu7.04可以安装,而且完美的安装 ! for《Oracle-10.2.0.1,打补丁10.2.0.5:在 debian 版本4不含4以上,及 ubuntu 7.04不含(代码片段

小程序--导航栏切换(tab切换)