-
Notifications
You must be signed in to change notification settings - Fork 776
Open
Description
在stepper的源码中有一个$_formatNum函数会将输入的数字里面的负号去掉,导致只能输入大于等于的数
$_formatNum(value) {
// @elist
value = String(value).replace(/[^0-9.-]|^-|^\./g, '')
return value === '' ? 0 : this.isInteger ? Math.floor(value) : +value
},@Version 2.6.1
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
