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
InputNumber
No response
实际显示100,实际显示1
()=>{ const [a,setA] = useState(1); return <InputNumber value={a} //预期展示100,实际展示1 field='percentage' label='percentage' suffix="%" step={0.1} min={0} max={1} onChange={setA} formatter={value => `${Number(value) * 100}`} parser={value => `${Number(value) / 100}`} style={{ width: 200 }} /> }
- OS: - browser:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
Which Component
InputNumber
Semi Version
No response
Current Behavior
实际显示100,实际显示1
Expected Behavior
No response
Steps To Reproduce
No response
ReproducibleCode
Environment
Anything else?
No response
The text was updated successfully, but these errors were encountered: