xiaohuxd opened this issue 2 years ago · 0 comments
在stepper的源码中有一个$_formatNum函数会将输入的数字里面的负号去掉,导致只能输入大于等于的数
$_formatNum
$_formatNum(value) { // @elist value = String(value).replace(/[^0-9.-]|^-|^\./g, '') return value === '' ? 0 : this.isInteger ? Math.floor(value) : +value },
官网的demo也有这个bug
@Version 2.6.1