Vue Sliders

Our Bootstrap Sliders (customised noUiSlider) refers to a lightweight JavaScript range slider library. The slider offers a wide selection of options and settings and is compatible with a ton of (touch) devices, including those running iOS, Android, Windows 8/8.1/10, Windows Phone 8.1 and Windows Mobile 10.
Keep reading our Bootstrap Sliders examples and learn how to use this plugin.


Initialization

Simply copy one of the code examples demonstrated below and include it in your page. Afterwards, you can modify the slider’s values with the ones you need.

Examples

Slider

<!-- Simple slider -->
<base-slider v-model="sliders.slider1"></base-slider>

Range slider

<!-- Range slider container -->
<base-slider v-model="sliders.slider2" :range="{min: 0, max: 500}"></base-slider>


<script>
export default{
  data(){
    return {
      sliders: {
        slider1: 0,
        slider2: [150, 400]
      }
    }
  }
}
</script>