GithubHelp home page GithubHelp logo

vue-custom-range-input's Introduction

npm Vue 3

Vue Custom Range Input Component

A customizable Vue component for a range slider input. Provides flexibility to use static or dynamic steps, along with additional visual rules for better user experience.

Installation

You can install the component using yarn:

npm install vue-custom-range-inputbash

or

yarn add vue-custom-range-inputbash

Usage

First, import the component into your Vue file:

import VueCustomRangeInput from 'vue-custom-range-input';

Then, register the component:

export default {
  components: {
    VueCustomRangeInput
  }
}

Now you can use the component in your template:

<VueCustomRangeInput v-model="yourValue" :min="minValue" :max="maxValue" :step="stepValue" />

Props

  • modelValue (required): The value bound to the slider.
  • min (optional, default: 0): The minimum value of the slider.
  • max (optional, default: 100): The maximum value of the slider.
  • steps (optional, default: []): An array of values for discrete steps.
  • step (optional, default: 1): The step interval between values.
  • showRule (optional, default: false): Shows the rule markers when set to true.

Events

  • update:modelValue: Emits the current value of the slider when it changes.

Slots

  • label: A slot to customize the label of each step. Receives value as a prop.

Styling

You can style the component by targeting the classes used internally. The component uses SCSS for styling, and the styles are scoped to the component.

Here is an example of how you might override the styles:

<style lang="scss">
.vue-custom-range-input {
  &__labels {
    ul {
      li {
        // your custom styles here
      }
    }
  }
}
</style>

License

This project is licensed under the MIT License.

Author

Viacheslav Angel

vue-custom-range-input's People

Contributors

frontangel avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.