SearchBar

这是对 SearchBar 最常用用法的一个概述。有关可用属性、方法或事件的更多信息,请访问 SearchBar 的完整 API 文档.

<SearchBar> 是一个 UI 组件,提供用户界面以输入搜索查询并向搜索提供者提交请求。


<SearchBar hint="Search hint" :text="searchPhrase" @textChange="onTextChanged" @submit="onSubmit" />

<SearchBar> 使用 v-model 提供双向数据绑定。

<SearchBar v-model="searchQuery" />

Props

名称类型描述
hint字符串获取或设置输入区域的占位符文本。
text字符串获取或设置搜索查询的值。
textFieldBackgroundColor颜色获取或设置输入区域的背景颜色。
textFieldHintColor颜色获取或设置占位符文本的颜色。

事件

名称描述
textChange文本更改时发出。
submit提交搜索输入时发出。
clear通过输入区域中的**X**按钮清除当前搜索输入时发出。

原生组件

AndroidiOS
android.widget.SearchViewUISearchBar
贡献者