carly31 / vue-slider-component

๐ŸŒก A highly customized slider component

Home Page:https://nightcatsama.github.io/vue-slider-component

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vue-slider-component

downloads npm-version license

๐ŸŽš A highly customized slider component

English | ็ฎ€ไฝ“ไธญๆ–‡

If you don't need new features, you can also use a more stable version v2.x.

โœจ New Features (v3.x)

  • ๐Ÿ”ง Fix exceptions
  • ๐Ÿ– More customizable
  • ๐Ÿ‘— Multiple style themes
  • ๐Ÿณ Support for more sliders
  • ๐Ÿ“Œ Add marks
  • ๐ŸŽ‰ Support SSR
  • ๐Ÿ’ Support Typescript

๐Ÿ“š Documentation

Document: https://nightcatsama.github.io/vue-slider-component

Live Demo๏ผšhttps://jsfiddle.net/NightCatSama/2xy72dod/10244/

๐ŸŽฏ install

$ yarn add vue-slider-component
# npm install vue-slider-component --save

๐Ÿš€ Usage

<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>

Changelog

Detailed changes for each release are documented in the release notes.

License

MIT

About

๐ŸŒก A highly customized slider component

https://nightcatsama.github.io/vue-slider-component

License:MIT License


Languages

Language:TypeScript 62.7%Language:CSS 22.3%Language:Vue 11.4%Language:JavaScript 2.4%Language:HTML 0.8%Language:Shell 0.5%