We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在stepper的源码中有一个
$_formatNum
函数会将输入的数字里面的负号去掉,导致只能输入大于等于的数官网的demo也有这个bug
@Version 2.6.1
The text was updated successfully, but these errors were encountered: