Example of using swiper plugin to implement carousel in Vue

Example of using swiper plugin to implement carousel in Vue

Hello everyone, I am currently working on a project that imitates Ele.me. I will synchronize my project experience here and share it with you!

vue - Use swiper plugin to implement carousel

Download and install: npm install swiper --save

The HTML part of Msite.vue:

<!--Use swiper in the msite_nav navigation section of the page-->
<div class="swiper-container">
	<div class="swiper-wrapper">
        <div class="swiper-slide">1</div>
        <div class="swiper-slide">2</div>
        <div class="swiper-slide">3</div>
    </div>
    <!-- swiper carousel dots-->
    <div class="swiper-pagination"></div>
</div>

The script part is introduced and initialized:

<script>
import Swiper from 'swiper'
//At the same time, import swiper's css file import 'swiper/dist/css/swiper.min.css'
export default {
  //Note that swiper should be initialized after the page is loaded (mounted) mounted () {
    //Create a swiper instance to implement the carousel new Swiper('.swiper-container', {
      autoplay: true,
      // If you need pagination: {
        el: '.swiper-pagination',
        clickable: true
      }
   })
  }
}
</script>

It should be noted that when importing CSS files, the import method is different because of different versions. Otherwise, an error will be reported because the corresponding CSS file cannot be found. For example, the latest version

import 'swiper/swiper-bundle.min.css'

For specific usage, please refer to [Swiper official documentation]

One thing to note is that you need to create a swiper instance after requesting data

Use watch and $nextTick to solve the carousel bug

The paging swiper should actually be initialized after the carousel list is displayed (that is, the categories array has data).

At the beginning, categories is an empty array. The carousel list will be displayed only when there is data. To monitor the data changes of categories, watch is used.

//Create a new watch to monitor categories
watch:
    categories (value) { // There is data in the categories array // But the interface has not been updated asynchronously yet}
}
// Delete the new Swiper...code in mounted

But in fact, changing the state data in the state (categories receiving data) and asynchronously updating the interface (displaying the carousel list) are two steps. Therefore, you need to wait for a while until the interface completes the asynchronous update before you can initialize Swiper.

// Using setTimeout can achieve the effect, but the timing is not accurate setTimeout(() => {
	// Create a Swiper instance object to implement the carousel new Swiper('.swiper-container', {
          autoplay: true,
          // If you need pagination: {
            el: '.swiper-pagination',
            clickable: true
          }
	})
}, 100)

Use vm.$nextTick( [callback] ) to create a Swiper object immediately after waiting for the interface to complete asynchronous update

// Use it immediately after modifying the data, then wait for the DOM to update.
this.$nextTick(() => {
	// Once the interface update is completed, execute the callback immediately new Swiper('.swiper-container', {
    	autoplay: true,
    	pagination:
    	el: '.swiper-pagination',
    	clickable: true
    }
})

The above is the details of the example of how Vue uses the swiper plug-in to implement the carousel. For more information about how Vue uses the swiper plug-in to implement the carousel, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Solution to the failure of swiper loop carousel in vue project
  • Vue encapsulates Swiper to realize the image carousel effect
  • Vue2.0 uses swiper component to achieve carousel effect
  • Vue modifying the style of the small dots of the swiper framework carousel does not work

<<:  Centos7 installation and configuration of Mysql5.7

>>:  Ubuntu 16.04 64-bit compatible with 32-bit programs in three steps

Recommend

Css3 realizes seamless scrolling and anti-shake

question The seamless scrolling of pictures and t...

Super simple qps statistics method (recommended)

Statistics of QPS values ​​in the last N seconds ...

The use of vue directive v-bind and points to note

Table of contents 1. v-bind: can bind some data t...

Learn SQL query execution order from scratch

The SQL query statement execution order is as fol...

Install Kafka in Linux

Table of contents 1.1 Java environment as a prere...

Overview of the definition of HTC components after IE5.0

Before the release of Microsoft IE 5.0, the bigges...

Use nginx + secondary domain name + https support

Step 1: Add a secondary domain name to the Alibab...

Mysql delete duplicate data to keep the smallest id solution

Search online to delete duplicate data and keep t...

Vuex implements simple shopping cart function

This article example shares the specific code of ...

WeChat applet implements sorting function based on date and time

I recently took over a small program project, and...

How to set a fixed IP in Linux (tested and effective)

First, open the virtual machine Open xshell5 to c...

Weather icon animation effect implemented by CSS3

Achieve results Implementation Code html <div ...