From 3f243f02efa4259f2b6af6635d1801f5c42c708d Mon Sep 17 00:00:00 2001 From: Jongyoon Jeong Date: Tue, 11 Dec 2018 13:40:07 +0900 Subject: [PATCH] Issue 5002 --- src/components/slider/slider.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/slider/slider.vue b/src/components/slider/slider.vue index b441671c..fcb4b246 100644 --- a/src/components/slider/slider.vue +++ b/src/components/slider/slider.vue @@ -379,7 +379,7 @@ }, handleInputChange (val) { - this.currentValue = [val || this.min, this.currentValue[1]]; + this.currentValue = [val === 0 ? 0 : val || this.min, this.currentValue[1]]; this.emitChange(); },