2019-11-22 16:58:13 +08:00
|
|
|
# Auto Complete
|
2020-01-28 14:11:09 +08:00
|
|
|
Use as search hint or something similar.
|
|
|
|
## Demos
|
2019-11-22 16:58:13 +08:00
|
|
|
```demo
|
|
|
|
basic
|
2019-12-04 17:59:38 +08:00
|
|
|
custom-input
|
|
|
|
after-select
|
2020-01-28 14:11:09 +08:00
|
|
|
```
|
|
|
|
## V-model
|
|
|
|
|Prop|Event|
|
|
|
|
|-|-|
|
|
|
|
|value|input|
|
|
|
|
|
|
|
|
## Props
|
|
|
|
|Name|Type|Default|Description|
|
|
|
|
|-|-|-|-|
|
|
|
|
|size|`'small' \| 'medium' \| 'large'`|`'medium'`||
|
|
|
|
|value|`string`|`null`||
|
|
|
|
|options|`Array`|`[]`||
|
|
|
|
|blur-after-select|`boolean`|`false`||
|
|
|
|
|clear-after-select|`boolean`|`false`||
|
|
|
|
|
|
|
|
## Slots
|
|
|
|
|Name|Parameters|Description|
|
|
|
|
|-|-|-|
|
2020-01-30 21:03:34 +08:00
|
|
|
|default|`({ handleInput, handleFocus, handleBlur, value })`||
|
2020-01-28 14:11:09 +08:00
|
|
|
|
|
|
|
## Events
|
|
|
|
|Name|Parameters|Description}
|
|
|
|
|-|-|-|
|
2020-01-30 23:54:06 +08:00
|
|
|
|input|`(value: string \| null)`||
|
|
|
|
|select|`(value: string)`||
|