nouislider-vue
Version:
noUiSlider component for vue 2 & nuxt
53 lines (38 loc) • 769 B
Markdown
veeno is a range slider component for vue based off of
[](https://github.com/leongersen/noUiSlider)
It supports all noUiSlider features.
You can install the package via npm or yarn.
```npm install veeno --save```
```yarn add veeno```
```vue
<template>
<div id = "app">
<veeno
pipsy
:handles = "35"
:range = {
'min': 0,
'max': 100
}
/>
</div>
</template>
<script>
import veeno from 'veeno';
export default {
name: 'app',
components: {
veeno,
},
};
</script>
```
For visual details, checkout the [homepage](http://veeno.surge.sh/) page
[](https://codesandbox.io/s/n462y7lx94)