docs(components): [input-number] fix min and max typo (#21495)

This commit is contained in:
Zhong
2025-07-25 13:35:32 +08:00
committed by GitHub
parent 1bf92d6146
commit 222dc87281

View File

@@ -102,8 +102,8 @@ input-number/with-prefix-suffix
| Name | Description | Type | Default |
| ----------------------------- | ------------------------------------------------ | --------------------------------------------- | ----------------------- |
| model-value / v-model | binding value | ^[number] / ^[null] | — |
| min | the minimum allowed value | ^[number] | Number.MAX_SAFE_INTEGER |
| max | the maximum allowed value | ^[number] | Number.MIN_SAFE_INTEGER |
| min | the minimum allowed value | ^[number] | Number.MIN_SAFE_INTEGER |
| max | the maximum allowed value | ^[number] | Number.MAX_SAFE_INTEGER |
| step | incremental step | ^[number] | 1 |
| step-strictly | whether input value can only be multiple of step | ^[boolean] | false |
| precision | precision of input value | ^[number] | — |