Commit 3f243f02efa4259f2b6af6635d1801f5c42c708d

Authored by Jongyoon Jeong
1 parent eaddbfb0

Issue 5002

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/components/slider/slider.vue
@@ -379,7 +379,7 @@ @@ -379,7 +379,7 @@
379 }, 379 },
380 380
381 handleInputChange (val) { 381 handleInputChange (val) {
382 - this.currentValue = [val || this.min, this.currentValue[1]]; 382 + this.currentValue = [val === 0 ? 0 : val || this.min, this.currentValue[1]];
383 this.emitChange(); 383 this.emitChange();
384 }, 384 },
385 385