# Range Slider
Range slider component is used for the selection of numeric ranges.
# Basic Usage
To start using range slider we need to set v-model
and max
prop that represents maximum value of range slider. If minimal value of slider is needed to adjust use min
prop by setting value lower than max
value. Step increment can be adjusted by passing number to step
prop.
# Min/Max values
Range slider supports changing of min
and max
values. max
prop represents maximum value of range slider. If minimal value of slider is needed to adjust use min
prop by setting value lower than max
value.
# Steps
In range slider step
represents value that is used to increment/reduce by on sliding. If it is needed to adjust use step
prop and set positive value.
# Labels
Range slider by default has no labels under slider, but they can be added by setting labeled
prop to true. Also labels support prefixes and suffixes. To pass suffix to label use labelSuffix
prop. To pass prefix use labelPrefix
prop.
# Disabled
To disable range slider use disabled
prop.
# Full Width
To set range slider full width use fullwidth
prop. By default slider is 300px
wide.
# Tooltip
By default range slider has tooltips on hover, to disable them use tooltipDisabled
prop.