slider
slider copied to clipboard
Vue 3 slider component with multihandles, tooltips merging and formatting (+Tailwind CSS support).
Duplicate identifier 'options'. ``` options?: object; ``` Type 'typeof import("~/node_modules/vue/dist/vue")' is not a constructor function type. ``` declare class Slider extends Vue { ``` Workaround described in: [Issue #18](https://github.com/vueform/slider/issues/18)
How do we fit handle within the slider bound ?  No-ui slider has an exemple for this [here](https://refreshless.com/nouislider/examples/#section-styling)  I want to change the color left side and right side of the slider. Can I ?🥲🥲🥲
Can we do steps like: 0,100,200,1000,5000 (so the value would be changing and we would have markings on the slider, so in this case there would be 3 markings on...
Doesnt render anything after including in the nuxt component is there a specific setup for this ? import Slider from '@vueform/slider'; then loading in components components: { Slider, },
To clarify it does work for multi-handle slider ``` // sliderClass: same as provided in README ``` ``` const value = ref([20, 60]) // Tooltip on drag works const value...
We’re using this slider for our project, and you guys did a really great job with it—it’s set up really nicely. Kudos! But, there’s one thing I’m missing: being able...
I need this event for updating value when dragging but it doesn't work.
In a Vue3 app I need to modify a value in an object based on slider change. I get the event, read the v-model and find the old value while...