AutoComplete
# AutoComplete
用于基础的后台管理系统页面中,联想下拉选择框,可对数据源的数据进行本地检索,输出检索结果
# 本地检索
Copy
# 远程检索
Copy
# AutoComplete Attributes
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
dataSource | 数据源(本地检索) | array | --- | --- |
value / v-model | 绑定值 | string | --- | --- |
placeholder | 输入框占位文本 | string | --- | --- |
disabled | 是否禁用 | boolean | --- | false |
clearable | 是否可清空 | boolean | --- | false |
defaultShow | 默认显示多少条 | number | --- | 50 |
customClass | 自定义类名 | string | --- | search-input |
remoteApi | 远程搜索的API | Function(queryString, key) | --- | --- |