Small
Middle
@@ -122,10 +122,10 @@ export default defineComponent({
| onSearch | `string` | 回车或点击搜索按钮触发的回调函数,返回文本框输入的值 | [基本用法](#基本用法) |
\ No newline at end of file
diff --git a/packages/devui-vue/docs/en-US/components/input/index.md b/packages/devui-vue/docs/en-US/components/input/index.md
new file mode 100644
index 0000000000000000000000000000000000000000..bc52a64096c98ab9e070cb87fecc730b870b0b91
--- /dev/null
+++ b/packages/devui-vue/docs/en-US/components/input/index.md
@@ -0,0 +1,108 @@
+# Input
+
+Text input box.
+
+### When To Use
+
+When you want to manually enter text.
+
+### Basic Usage
+
+:::demo
+
+```vue
+
+
+
Default
+
+
+
+ Disabled
+
+
+
+ Error
+
+
+
+
+
+```
+
+:::
+
+### Size
+
+:::demo
+
+```vue
+
+
+
Small
+
+
+
+ Middle
+
+
+
+ Large
+
+
+
+
+```
+
+:::
+
+### Password Input
+
+:::demo
+
+```vue
+
+
+
+
+```
+
+:::
+
+### API
+
+| Parameter | Type | Default | Description | Jump to Demo |
+| :-------------------: | :--------------: | :---------------------: | :--------------------------------------------: | :-------------------: |
+| id | `string` | -- | Optional, input ID | [Basic Usage](#basic-usage) |
+| v-model | `string` | '' | Optional, bound value |[Password Input](#password-input) |
+| placeholder | `string` | -- | Optional, input placeholder | [Basic Usage](#basic-usage) |
+| maxLength | `number` | Number.MAX_SAFE_INTEGER | Optional, the max-length of the input box | |
+| disabled | `boolean` | false | Optional, whether the input box is disabled | [Basic Usage](#basic-usage) |
+| error | `boolean` | false | Optional, indicating whether an input error occurs in the input box. | [Basic Usage](#basic-usage) |
+| size | `'sm'\|''\|'lg'` | '' | Optional, size of the text box. The value can be 'lg','','sm' | [Size](#size) |
+| cssClass | `string` | '' | Optional, support to pass in the class name to the input box | |
+| showPassword | `boolean` | false | Optional, password input box |[Password Input](#password-input) |
+| autoFocus | `boolean` | false | Optional, whether the input box is auto-focused | [Basic Usage](#basic-usage) |
+
+
\ No newline at end of file
diff --git a/packages/devui-vue/docs/en-US/components/search/index.md b/packages/devui-vue/docs/en-US/components/search/index.md
index 96422bc777c9473fc194eccdb8909f62e9b8c7fc..7adbdb009bb8b5521225a8a0235135e4663d0675 100644
--- a/packages/devui-vue/docs/en-US/components/search/index.md
+++ b/packages/devui-vue/docs/en-US/components/search/index.md
@@ -12,7 +12,7 @@ When you need to search for required data in a dataset, you can enter the conten
```vue
-
+
Small
Middle
@@ -51,7 +51,7 @@ export default defineComponent({
```vue
-
+
```
@@ -104,28 +104,28 @@ export default defineComponent({
| Parameter | Type | Default | Description | Jump to Demo | Global Config |
| :---------: | :------: | :-------: | :----------------------- | --------------------------------- | --------- |
-| size | `'sm'\|''\|'lg'` | '' | Optional. Specifies the size of the search box. The options are lg, '', and sm. | [Basic Usage](#BasicUsage) ||
-| placeholder | `string` | -- | Optional. This parameter specifies the placeholder in the input box. | [Left Search Icon](#LeftSearchIcon) ||
-| maxLength | `number` | -- | Optional. Max-length of the text box. | [VModel](#VModel) ||
-| delay | `number` | 300 | Optional. Delay of debounceTime. | [Basic Usage](#BasicUsage) ||
-| disabled | `boolean` | false | Optional. Indicating whether the text box is available. | [Basic Usage](#BasicUsage) ||
-| autoFocus | `boolean` | false | Optional. Whether to enable autofocus for the text box. | [Basic Usage](#BasicUsage) ||
-| isKeyupSearch | `boolean` | false | Optional. Indicates whether to support immediate searchFn after input. | [Basic Usage](#BasicUsage) ||
-| iconPosition | `string` | 'right' | Optional. The options are'left' and'right'. | [Left Search Icon](#LeftSearchIcon) ||
-| noBorder | `boolean` | false | Optional. Specifies whether to display the border. | [No Border](#NoBorder) ||
-| cssClass | `string` | '' | Optional. The class name can be transferred to the text box. | [VModel](#VModel) ||
+| size | `'sm'\|''\|'lg'` | '' | Optional. Specifies the size of the search box. The options are lg, '', and sm. | [Basic Usage](#basic-usage) ||
+| placeholder | `string` | -- | Optional. This parameter specifies the placeholder in the input box. | [Left Search Icon](#left-search-icon) ||
+| maxLength | `number` | -- | Optional. Max-length of the text box. | [VModel](#vmodel) ||
+| delay | `number` | 300 | Optional. Delay of debounceTime. | [Basic Usage](#basic-usage) ||
+| disabled | `boolean` | false | Optional. Indicating whether the text box is available. | [Basic Usage](#basic-usage) ||
+| autoFocus | `boolean` | false | Optional. Whether to enable autofocus for the text box. | [Basic Usage](#basic-usage) ||
+| isKeyupSearch | `boolean` | false | Optional. Indicates whether to support immediate searchFn after input. | [Basic Usage](#basic-usage) ||
+| iconPosition | `string` | 'right' | Optional. The options are'left' and'right'. | [Left Search Icon](#left-search-icon) ||
+| noBorder | `boolean` | false | Optional. Specifies whether to display the border. | [No Border](#no-border) ||
+| cssClass | `string` | '' | Optional. The class name can be transferred to the text box. | [VModel](#vmodel) ||
### d-search event
| Event | Type | Description | Jump to Demo |
| :---------: | :------: | :--------------------: | :---------: |
-| onSearch | `string` | Callback function triggered by pressing Enter or clicking the search button to return the value entered in the text box. | [Basic Usage](#BasicUsage) |
+| onSearch | `string` | Callback function triggered by pressing Enter or clicking the search button to return the value entered in the text box. | [Basic Usage](#basic-usage) |