diff --git a/examples/docs/en-US/input-number.md b/examples/docs/en-US/input-number.md index f3a5b3cda..5d06cba7d 100644 --- a/examples/docs/en-US/input-number.md +++ b/examples/docs/en-US/input-number.md @@ -191,6 +191,8 @@ Use attribute `size` to set additional sizes with `medium`, `small` or `mini`. |controls-position | position of the control buttons | string | right | - | |name | same as `name` in native input | string | — | — | |label | label text | string | — | — | +|placeholder | placeholder in input | string | - | - | + ### Events | Event Name | Description | Parameters | diff --git a/examples/docs/es/input-number.md b/examples/docs/es/input-number.md index 90d58b35c..432d2629b 100644 --- a/examples/docs/es/input-number.md +++ b/examples/docs/es/input-number.md @@ -192,6 +192,8 @@ Utilice el atributo `size` para establecer tamaños adicionales con `medium`, `s | controls-position | posición de los botones de control | string | right | - | | name | lo mismo que `name` en un input nativo | string | — | — | | label | texto de la etiqueta | string | — | — | +| placeholder | placeholder in input | string | - | - | + ### Eventos | Nombre | Descripción | Parámetros | diff --git a/examples/docs/zh-CN/input-number.md b/examples/docs/zh-CN/input-number.md index 26566440a..9f76ad4ce 100644 --- a/examples/docs/zh-CN/input-number.md +++ b/examples/docs/zh-CN/input-number.md @@ -189,6 +189,8 @@ | controls-position | 控制按钮位置 | string | right | - | | name | 原生属性 | string | — | — | | label | 输入框关联的label文字 | string | — | — | +| placeholder | 输入框默认 placeholder | string | - | - | + ### Events | 事件名称 | 说明 | 回调参数 | |---------|--------|---------| diff --git a/packages/input-number/src/input-number.vue b/packages/input-number/src/input-number.vue index 1a73fdd44..cc6cb27cd 100644 --- a/packages/input-number/src/input-number.vue +++ b/packages/input-number/src/input-number.vue @@ -29,6 +29,7 @@