docs(Search): add click-input event (#9010)

This commit is contained in:
neverland 2021-07-12 15:05:37 +08:00 committed by GitHub
parent 0ac7dad604
commit f7ef3b316b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -147,7 +147,8 @@ Use `action` slot to custom right button, `cancel` event will no longer be Emitt
| update:model-value | Emitted when input value changed | _value: string_ |
| focus | Emitted when input is focused | _event: Event_ |
| blur | Emitted when input is blurred | _event: Event_ |
| clear | Emitted when the clear icon is clicked | _event: Event_ |
| click-input | Emitted when the input is clicked | _event: MouseEvent_ |
| clear | Emitted when the clear icon is clicked | _event: MouseEvent_ |
| cancel | Emitted when the cancel button is clicked | - |
### Methods

View File

@ -159,7 +159,8 @@ export default {
| update:model-value | 输入框内容变化时触发 | _value: string (当前输入的值)_ |
| focus | 输入框获得焦点时触发 | _event: Event_ |
| blur | 输入框失去焦点时触发 | _event: Event_ |
| clear | 点击清除按钮后触发 | _event: Event_ |
| click-input | 点击输入区域时触发 | _event: MouseEvent_ |
| clear | 点击清除按钮后触发 | _event: MouseEvent_ |
| cancel | 点击取消按钮时触发 | - |
### 方法