diff --git a/examples/docs/en-US/input-number.md b/examples/docs/en-US/input-number.md index 58dc21722..3d9a20c11 100644 --- a/examples/docs/en-US/input-number.md +++ b/examples/docs/en-US/input-number.md @@ -156,7 +156,7 @@ Use attribute `size` to set additional sizes with `medium`, `small` or `mini`. | Attribute | Description | Type | Accepted Values | Default | |----| ----| ---| ----| -----| |value | binding value| number | — | — | -|min | the minimum allowed value | number | — | 0 | +|min | the minimum allowed value | number | — | `-Infinity` | |max | the maximum allowed value | number | — | `Infinity` | |step | incremental step | number | — | 1 | |size | size of the component | string | large/small| — | diff --git a/examples/docs/es/input-number.md b/examples/docs/es/input-number.md index 360d4644a..929fc4812 100644 --- a/examples/docs/es/input-number.md +++ b/examples/docs/es/input-number.md @@ -157,7 +157,7 @@ Utilice el atributo `size` para establecer tamaños adicionales con `medium`, `s | Atributo | Descripción | Tipo | Valores aceptados | Por defecto | | ----------------- | ---------------------------------------- | ------- | ----------------- | ----------- | | value | valor vinculado | number | — | — | -| min | el valor mínimo permitido | number | — | 0 | +| min | el valor mínimo permitido | number | — | `-Infinity` | | max | el valor maximo permitido | number | — | `Infinity` | | step | incremento (salto) | number | — | 1 | | size | tamaño del componente | string | large/small | — | diff --git a/examples/docs/zh-CN/input-number.md b/examples/docs/zh-CN/input-number.md index dd934a263..4cf1d5ca2 100644 --- a/examples/docs/zh-CN/input-number.md +++ b/examples/docs/zh-CN/input-number.md @@ -153,7 +153,7 @@ | 参数 | 说明 | 类型 | 可选值 | 默认值 | |----------|-------------- |----------|-------------------------------- |-------- | | value | 绑定值 | number | — | — | -| min | 设置计数器允许的最小值 | number | — | 0 | +| min | 设置计数器允许的最小值 | number | — | -Infinity | | max | 设置计数器允许的最大值 | number | — | Infinity | | step | 计数器步长 | number | — | 1 | | size | 计数器尺寸 | string | large, small | — |