Closed
Description
When you use a decimal value for the step property you don't get decimal values. The value of the slider is always an integer.
<Slider v-model="value1" :step="0.1" />
I also tried using decimal values for the min and max props, but that does not make a difference.
<Slider v-model="value1" :step="0.1" :min="0.5" :max="10.0" />
I tried it with both Vue versions (2.x and 3.x).
Example: https://codesandbox.io/s/xenodochial-butterfly-puv1i?file=/src/components/SliderDemo.vue
Activity