You are reading docs for v1.3.1, click here for the latest version.
SearchBar

This is an overview of the most common usage of SearchBar. For more information about the available properties, methods, or events, head over to the complete API documentation for SearchBar.

SearchBar é um componente que fornece um campo de pesquisa e envia solicitações ao provedor de busca.


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

Nota: Esse componente suporta two-way data binding usando v-model:

<SearchBar v-model="searchQuery" />

Propriedades

nometipodescrição
hintStringTexto de placeholder para o campo editável.
textStringValor para o campo de busca.

Eventos

nomedescrição
textChangeEmitido quando o texto é alterado.
submitEmitido quando o campo de busca é enviado.

Componente Nativo

AndroidiOS
android.widget.SearchViewUISearchBar
Contributors