diff --git a/src/field/README.md b/src/field/README.md
index 4441842ef..4dc692ebc 100644
--- a/src/field/README.md
+++ b/src/field/README.md
@@ -216,7 +216,7 @@ Use `input-align` prop to align the input value
| type | Input type, can be set to `tel` `digit`
`number` `textarea` `password` | _string_ | `text` |
| size | Size,can be set to `large` | _string_ | - |
| maxlength | Max length of value | _number \| string_ | - |
-| placeholder | Placeholder | _string_ | - |
+| placeholder | Input placeholder | _string_ | - |
| border | Whether to show inner border | _boolean_ | `true` |
| disabled | Whether to disable field | _boolean_ | `false` |
| readonly | Whether to be readonly | _boolean_ | `false` |
diff --git a/src/field/README.zh-CN.md b/src/field/README.zh-CN.md
index c281ccd0b..30381f5f6 100644
--- a/src/field/README.zh-CN.md
+++ b/src/field/README.zh-CN.md
@@ -241,7 +241,7 @@ export default {
| type | 输入框类型, 可选值为 `tel` `digit`
`number` `textarea` `password` 等 | _string_ | `text` |
| size | 大小,可选值为 `large` | _string_ | - |
| maxlength | 输入的最大字符数 | _number \| string_ | - |
-| placeholder | 占位提示文字 | _string_ | - |
+| placeholder | 输入框占位提示文字 | _string_ | - |
| border | 是否显示内边框 | _boolean_ | `true` |
| disabled | 是否禁用输入框 | _boolean_ | `false` |
| readonly | 是否只读 | _boolean_ | `false` |
diff --git a/src/stepper/README.md b/src/stepper/README.md
index a4559c679..61e98680d 100644
--- a/src/stepper/README.md
+++ b/src/stepper/README.md
@@ -119,8 +119,9 @@ export default {
| button-size `v2.0.5` | Button size | _number \| string_ | `28px` |
| decimal-length `v2.2.1` | Decimal length | _number \| string_ | - |
| theme `v2.8.2` | Theme, can be set to `round` | _string_ | - |
+| placeholder `v2.8.6` | Input placeholder | _string_ | - |
| integer | Whether to allow only integers | _boolean_ | `false` |
-| disabled | Disable value change | _boolean_ | `false` |
+| disabled | Whether to disable value change | _boolean_ | `false` |
| disable-plus `v2.2.16` | Whether to disable plus button | _boolean_ | `false` |
| disable-minus `v2.2.16` | Whether to disable minus button | _boolean_ | `false` |
| disable-input | Whether to disable input | _boolean_ | `false` |
diff --git a/src/stepper/README.zh-CN.md b/src/stepper/README.zh-CN.md
index 57d5f9650..2cd2f4b1c 100644
--- a/src/stepper/README.zh-CN.md
+++ b/src/stepper/README.zh-CN.md
@@ -145,6 +145,7 @@ export default {
| button-size `v2.0.5` | 按钮大小以及输入框高度,默认单位为`px` | _number \| string_ | `28px` |
| decimal-length `v2.2.1` | 固定显示的小数位数 | _number \| string_ | - |
| theme `v2.8.2` | 样式风格,可选值为 `round` | _string_ | - |
+| placeholder `v2.8.6` | 输入框占位提示文字 | _string_ | - |
| integer | 是否只允许输入整数 | _boolean_ | `false` |
| disabled | 是否禁用步进器 | _boolean_ | `false` |
| disable-plus `v2.2.16` | 是否禁用增加按钮 | _boolean_ | `false` |
diff --git a/src/stepper/index.js b/src/stepper/index.js
index 7e0794a5d..2943a000f 100644
--- a/src/stepper/index.js
+++ b/src/stepper/index.js
@@ -31,6 +31,7 @@ export default createComponent({
inputWidth: [Number, String],
buttonSize: [Number, String],
asyncChange: Boolean,
+ placeholder: String,
disablePlus: Boolean,
disableMinus: Boolean,
disableInput: Boolean,
@@ -298,6 +299,7 @@ export default createComponent({
readonly={this.disableInput}
// set keyboard in mordern browers
inputmode={this.integer ? 'numeric' : 'decimal'}
+ placeholder={this.placeholder}
aria-valuemax={this.max}
aria-valuemin={this.min}
aria-valuenow={this.currentValue}
diff --git a/src/stepper/test/__snapshots__/index.spec.js.snap b/src/stepper/test/__snapshots__/index.spec.js.snap
index 74e6df5e0..00ace123a 100644
--- a/src/stepper/test/__snapshots__/index.spec.js.snap
+++ b/src/stepper/test/__snapshots__/index.spec.js.snap
@@ -8,4 +8,6 @@ exports[`disabled stepper 1`] = `