Docs: add input event in input Events Table (#18061)

* docs: Input Events Table add input event

update input doc, add input event
the issue is #7592

* docs: update input docs and add input event

* docs: update input docs and add input event
This commit is contained in:
vimvinter
2019-11-15 16:26:45 +08:00
committed by Zhi Cun
parent 57e9007893
commit f3c1666ac8
4 changed files with 8 additions and 1 deletions

View File

@@ -605,6 +605,8 @@ export default {
| blur | triggers when Input blurs | (event: Event) |
| focus | triggers when Input focuses | (event: Event) |
| change | triggers when the icon inside Input value change | (value: string \| number) |
| change | triggers only when the input box loses focus or the user presses Enter | (value: string \| number) |
| input | triggers when the Input value change | (value: string \| number) |
| clear | triggers when the Input is cleared by clicking the clear button | — |
### Input Methods