I am using vueSlider.
Looking at the example below link, I think that only the integers in min and max can be set.
<vue-slider
ref="slider"
v-model="value"
min="0"
max="100"
But I would like to set a range that is not an integer. For example, I want to set the value from 30 seconds to 1:30 minutes in the range.
Is there a way to implement something like the above example in vue-slider?
If it could not, please let me know if you have any alternatives.
Thanks for reading my question.