# Range Input
Range input component is used for the selection of numeric ranges.
# Basic Usage
To start using range input we need to set v-model
with value beeing null
or [minNumber, maxNumber]
.
# Placeholders
Range input supports of custom placeholders. Use placeholders
prop to pass array of strings to be used as range input placeholders.
# Sublabels
Range input supports of custom sublabels. Use sublabels
prop to pass array of strings to be used as range input sublabels. By default sublabels are ['Min', 'Max']
.
# Slots
Range input has one slot for divider
. By default divider is -
symbol.
# Events
Event | Arguments | Description |
---|---|---|
@update | [min, max] | Emitted when range input changes values |
← Radio Range Slider →