You are reading docs for v1.3.1, click here for the latest version.
슬라이더 (Slider)

This is an overview of the most common usage of 슬라이더 (Slider). For more information about the available properties, methods, or events, head over to the complete API documentation for 슬라이더 (Slider).

슬라이더(Slider) 컴포넌트는 사용자가 특정 범위의 숫자 값을 입력할 수 있도록 해줍니다.


<Slider value="80" @valueChange="onValueChanged" />

노트: 이 컴포넌트는 v-model 을 이용한 양방향(two-way) 바인딩을 지원합니다:

<Slider v-model="value" />

Props

이름타입설명
valueNumber슬라이더의 값
minValueNumber슬라이더 최소값. 기본값은 0.
maxValueNumber슬라이더 최대값. 기본값은 100.

이벤트

이름설명
valueChange슬라이더 값이 바뀔때 발생.

Native Component

AndroidiOS
android.widget.SeekBarUISlider
Contributors