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) 는 검색 커리를 입력하고 검색 제공자에게 요청을 보낼수 있는 사용자 인터페이스를 제공합니다.


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

노트: 이 컴포넌트는 v-model 을 이용한 양방향(two-way) 바인딩을 지원합니다:

<SearchBar v-model="searchQuery" />

Props

이름타입설명
hintString편집가능한 인풋 영역의 텍스트 플레이스홀더
textString검색 인풋의 value

## 이벤트

이름설명
textChange텍스트가 바뀔때 발생.
submit검색 인풋이 submit 될때 발생

Native Component

AndroidiOS
android.widget.SearchViewUISearchBar
Contributors