Skip to content

Slider

Supports single-direction slider and dual-direction slider.

Basic Usage

v-model is the binding value. If it's a number type, one slider will be displayed; if it's an array type, two sliders will be displayed.

html
<wd-slider v-model="value"/>
typescript
const value = ref<number>(30)

Dual Slider

In dual slider mode, value should be a two-element array type.

html
<wd-slider v-model="value" />
typescript
const value = ref<number[]>([10, 30])

Maximum and Minimum Values

Set min for minimum value and max for maximum value.

html
<wd-slider v-model="value" :min="4" :max="1000" />

Hide Labels

Set hide-label to hide the current value of the slider.

html
<wd-slider v-model="value" hide-label/>

Set hide-min-max to hide the maximum and minimum values.

html
<wd-slider v-model="value" hide-min-max />

Disabled

Set the disabled property.

html
<wd-slider v-model="value" disabled />

Attributes

ParameterDescriptionTypeOptionsDefaultVersion
v-modelSlider value, if it's an array, it's a dual slidernumber / array---
hide-min-maxWhether to show the maximum and minimum values on both sidesboolean-false-
hide-labelWhether to show the current slider valueboolean-false-
disabledWhether to disableboolean-false-
maxMaximum valuenumber-100-
minMinimum value, negative numbers allowed (1.2.19)number-0-
stepStep valuenumber-11.2.19
active-colorActive background color of the progress barstring-linear-gradient(315deg, rgba(81,124,240,1) 0%,rgba(118,158,245,1) 100%)-
inactive-colorInactive background color of the progress barstring-#e5e5e5-

Events

Event NameDescriptionParametersVersion
dragstartTriggered when starting to move{ value }-
dragmoveTriggered when moving the slider{ value }-
dragendTriggered when movement ends{ value }-

Methods

Exposed functions

Method NameDescriptionParametersVersion
initSliderInitialize slider width data-1.2.25

External Style Classes

Class NameDescriptionVersion
custom-classRoot node style-
custom-min-classCustom style for minimum value-
custom-max-classCustom style for maximum value-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.