Skip to content

Latest commit

 

History

History
80 lines (56 loc) · 1.81 KB

README-CN.md

File metadata and controls

80 lines (56 loc) · 1.81 KB

vue-slider-component

downloads npm-version license

🎚 一个高度定制化的滑块组件

English | 简体中文

🍉 Vue3.x

目前仍然是测试版本,可能存在意想不到的 bug,请谨慎使用。

安装

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

注意事项

  • 由于类型冲突,参数 data 更改为 v-data(可能是临时更改)

✨ 新特性

  • 🍖 更加可定制化
  • 👗 多种样式主题
  • 🐳 支持更多的滑块
  • 📌 增加标志设置
  • 🎉 支持 SSR
  • 🍒 支持 Typescript

📚 文档

在线文档:https://nightcatsama.github.io/vue-slider-component/#/zh-CN/

在线例子: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>

更新日志

每个版本的更新日志

支持

如果你喜欢这个组件,你也可以请我喝咖啡 ☕️ 。

License

MIT