Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Keen Slider | 3,961 | 35 | a month ago | 100 | September 19, 2022 | 53 | mit | TypeScript | ||
The HTML touch slider carousel with the most native feeling you will get. | ||||||||||
Splide | 3,821 | 32 | 25 days ago | 148 | September 21, 2022 | 44 | mit | TypeScript | ||
Splide is a lightweight, flexible and accessible slider/carousel written in TypeScript. No dependencies, no Lighthouse errors. | ||||||||||
Embla Carousel | 3,241 | 3 | 16 | 7 days ago | 184 | September 12, 2022 | 8 | mit | TypeScript | |
www.embla-carousel.com — A lightweight carousel library with fluid motion and great swipe precision. | ||||||||||
Vue Ydui | 2,754 | 108 | 14 | 4 years ago | 128 | August 20, 2018 | 189 | mit | Vue | |
A mobile components Library with Vue2.js. 一只基于Vue2.x的移动端组件库。 | ||||||||||
Egjs Flicking | 2,341 | 3 | 14 | a month ago | 107 | September 15, 2022 | 39 | mit | TypeScript | |
🎠 ♻️ Everyday 30 million people experience. It's reliable, flexible and extendable carousel. | ||||||||||
Vue Slider Component | 2,292 | 394 | 223 | 6 months ago | 195 | July 28, 2022 | 24 | mit | TypeScript | |
🌡 A highly customized slider component | ||||||||||
Front End Plugins | 944 | 2 years ago | JavaScript | |||||||
:whale2: Web 前端常用插件 | ||||||||||
Vue Concise Slider | 920 | 35 | 7 | 6 months ago | 61 | February 18, 2022 | 44 | Vue | ||
vue-concise-slider,A simple vue sliding component | ||||||||||
Vue Swipe | 916 | 210 | 16 | 4 years ago | 22 | April 18, 2018 | 42 | Vue | ||
A touch slider for vue.js. | ||||||||||
Vue Slick Carousel | 733 | 8 | 5 months ago | 18 | July 05, 2020 | 153 | other | Vue | ||
🚥Vue Slick Carousel with True SSR Written for ⚡Faster Luxstay |
🎚 A highly customized slider component
This is still in beta and may contain unexpected bugs, please use with caution.
$ yarn add [email protected]
# npm install [email protected] --save
value
-> modelValue
. (Official API Changes)Document: https://nightcatsama.github.io/vue-slider-component
Live Demo: https://jsfiddle.net/NightCatSama/2xy72dod/10547/
$ yarn add vue-slider-component
# npm install vue-slider-component --save
<template>
<vue-slider v-model="value" />
</template>
<script>
import VueSlider from 'vue-slider-component'
import 'vue-slider-component/theme/antd.css'
export default {
components: {
VueSlider,
},
data() {
return {
value: 0,
}
},
}
</script>
<template>
<vue-slider v-model="value" />
</template>
<script setup>
import { reactive, toRefs } from 'vue'
import VueSlider from 'vue-slider-component'
import 'vue-slider-component/theme/antd.css'
export default {
setup() {
const data = reactive({ value: 0 })
return toRefs(data)
},
}
</script>
Detailed changes for each release are documented in the release notes.
If my code has helped you, please consider buy me a coffee ☕.