Check if isNaN so we don't ignore value of zero
This commit is contained in:
parent
4ef54c6ea9
commit
815f835479
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@
|
|||
},
|
||||
setValue (val) {
|
||||
// 如果 step 是小数,且没有设置 precision,是有问题的
|
||||
if (this.precision) val = Number(Number(val).toFixed(this.precision));
|
||||
if (!isNaN(this.precision)) val = Number(Number(val).toFixed(this.precision));
|
||||
|
||||
this.$nextTick(() => {
|
||||
this.currentValue = val;
|
||||
|
|
Loading…
Add table
Reference in a new issue