# vue-awesome-swiper **Repository Path**: duixiangyu/vue-awesome-swiper ## Basic Information - **Project Name**: vue-awesome-swiper - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2020-05-18 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
# vue-awesome-swiper [](https://vuejs.org) [](https://github.com/surmon-china/vue-awesome-swiper/stargazers) [](https://www.npmjs.com/package/vue-awesome-swiper) [](https://github.com/surmon-china/vue-awesome-swiper/actions?query=workflow%3APublish) [](/LICENSE) **[Swiper](https://swiperjs.com)** component for Vue. --- ### DEPRECATED ⚠️ The **vue-awesome-swiper** project has been **deprecated** and superseded by [Swiper Vue component](https://swiperjs.com/vue), a TypeScript friendly project which is a recent official release provided by [Swiper](https://swiperjs.com/). For better stability, please migrate as soon as possible. **vue-awesome-swiper** released its last version **v5** for (bridge) transition. It's worth noting that APIs in this version are completely **NOT compatible** with that of previous version, it only [re-exports](/index.js) [`swiper/vue`](https://swiperjs.com/vue) and **only supports Vue3**, which means only functions of `swiper/vue` are available. For example, the following code is fully equivalent in `vue-awesome-swiper@5`. And if you want to check update catelog of Swiper API, please refer to [Swiper Changelog](https://swiperjs.com/changelog). ```ts import { Swiper, SwiperSlide, /* rest swiper/vue API... */ } from 'vue-awesome-swiper' // exactly equivalent to import { Swiper, SwiperSlide, /* rest swiper/vue API... */ } from 'swiper/vue' ``` If you need to use older versions of vue-awesome-swiper, you can find the corresponding version number below. Feel free to fork our code and maintain your own copy. ### Legacy versions - Swiper 5-6 [vue-awesome-swiper@4.1.1](https://github.com/surmon-china/vue-awesome-swiper/tree/v4.1.1) (Vue2) - Swiper 4.x [vue-awesome-swiper@3.1.3](https://github.com/surmon-china/vue-awesome-swiper/tree/v3.1.3) (Vue2) - Swiper 3.x [vue-awesome-swiper@2.6.7](https://github.com/surmon-china/vue-awesome-swiper/tree/v2.6.7) (Vue2) --- ### Documentation - [Examples (Vue3)](https://github.surmon.me/vue-awesome-swiper) - [Examples (Vue2)](https://v1.github.surmon.me/vue-awesome-swiper) - [Swiper API](https://swiperjs.com/swiper-api) - [Swiper Vue (3)](https://swiperjs.com/vue) - [Swiper issues](https://github.com/nolimits4web/swiper/issues?q=is%3Aissue+is%3Aopen+label%3AVue) - [Swiper discussions](https://github.com/nolimits4web/swiper/discussions) ### How to use #### Install ``` bash npm install swiper vue-awesome-swiper --save ``` ```bash yarn add swiper vue-awesome-swiper ``` #### Local component ```vue