Slider
<BaseSlider
:max= "10"
:min= "0"
:step= "1"
/>Properties
- disabledDisabled state.
- marksMarks for the slider.
- maxMaximum value of the slider.
- minMinimum value of the slider.
- stepThe amount of steps for the slider.
Multiple values
<BaseRangeSlider
:max= "10"
:min= "0"
:step= "1"
v-model:startValue= "MinValue"
v-model:endValue= "MaxValue"
/>Properties
- disabledDisabled state.
- marksMarks for the slider.
- maxMaximum value of the slider.
- minMinimum value of the slider.
- stepThe amount of steps for the slider.
- v-model:startValueThe start value of the slider.
- v-model:endValueThe end value of the slider.