Issue 5002

This commit is contained in:
Jongyoon Jeong 2018-12-11 13:40:07 +09:00
parent eaddbfb000
commit 3f243f02ef

View file

@ -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();
},