/*! For license information please see 5206.d720f59e.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["5206"],{11696:function(n,t,s){"use strict";s.r(t);var a=s("80681");let e=["innerHTML"];t.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

Search

\n

Intro

\n

Input box component for search scenarios.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { Search } from 'vant';\n\nconst app = createApp();\napp.use(Search);\n
\n

Usage

\n

Basic Usage

\n
<van-search v-model="value" placeholder="Placeholder" />\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const value = ref('');\n    return { value };\n  },\n};\n
\n

Listen to Events

\n

search event will be Emitted when click the search button on the keyboard, cancel event will be Emitted when click the cancel button.

\n
<form action="/">\n  <van-search\n    v-model="value"\n    show-action\n    placeholder="Placeholder"\n    @search="onSearch"\n    @cancel="onCancel"\n  />\n</form>\n
\n
import { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const value = ref('');\n    const onSearch = (val) => showToast(val);\n    const onCancel = () => showToast('Cancel');\n    return {\n      value,\n      onSearch,\n      onCancel,\n    };\n  },\n};\n
\n
\n

Tips: There will be a search button on the keyboard when Search is inside a form in iOS.

\n
\n

Input Align

\n
<van-search v-model="value" input-align="center" placeholder="Placeholder" />\n
\n

Disabled

\n
<van-search v-model="value" disabled placeholder="Placeholder" />\n
\n

Custom Background Color

\n
<van-search\n  v-model="value"\n  shape="round"\n  background="#4fc08d"\n  placeholder="Placeholder"\n/>\n
\n

Custom Action Button

\n

Use action slot to custom right button, cancel event will no longer be Emitted when use this slot.

\n
<van-search\n  v-model="value"\n  show-action\n  label="Address"\n  placeholder="Placeholder"\n  @search="onSearch"\n>\n  <template #action>\n    <div @click="onClickButton">Search</div>\n  </template>\n</van-search>\n
\n
import { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const value = ref('');\n    const onSearch = (val) => showToast(val);\n    const onClickButton = () => showToast(value.value);\n    return {\n      value,\n      onSearch,\n      onClickButton,\n    };\n  },\n};\n
\n

API

\n

Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
v-modelInput valuenumber | string-
labelLeft side labelstring-
nameAs the identifier when submitting the formstring-
shapeShape of field, can be set to roundstringsquare
idInput id, the for attribute of the label also will be setstringvan-search-n-input
backgroundBackground color of fieldstring#f2f2f2
maxlengthMax length of valuenumber | string-
placeholderPlaceholderstring-
clearableWhether to be clearablebooleantrue
clear-iconClear icon namestringclear
clear-triggerWhen to display the clear icon, always means to display the icon when value is not empty, focus means to display the icon when input is focusedstringfocus
autofocusWhether to auto focus, unsupported in iOSbooleanfalse
show-actionWhether to show right action buttonbooleanfalse
action-textText of action buttonstringCancel
disabledWhether to disable fieldbooleanfalse
readonlyWhether to be readonlybooleanfalse
errorWhether to mark the input content in redbooleanfalse
error-messageError messagestring-
formatterInput value formatter(val: string) => string-
format-triggerWhen to format value, can be set to onBlurstringonChange
input-alignText align of field, can be set to center rightstringleft
left-iconLeft icon namestringsearch
right-iconRight icon namestring-
autocompleteautocomplete attribute of native input elementstring-
\n

Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
searchEmitted when confirming searchvalue: string
update:model-valueEmitted when input value changedvalue: string
focusEmitted when input is focusedevent: Event
blurEmitted when input is blurredevent: Event
click-inputEmitted when the input is clickedevent: MouseEvent
click-left-iconEmitted when the left icon is clickedevent: MouseEvent
click-right-iconEmitted when the right icon is clickedevent: MouseEvent
clearEmitted when the clear icon is clickedevent: MouseEvent
cancelEmitted when the cancel button is clicked-
\n

Methods

\n

Use ref to get Search instance and call instance methods.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionAttributeReturn value
focusTrigger input focus--
blurTrigger input blur--
\n

Types

\n

The component exports the following type definitions:

\n
import type { SearchProps, SearchShape, SearchInstance } from 'vant';\n
\n

SearchInstance is the type of component instance:

\n
import { ref } from 'vue';\nimport type { SearchInstance } from 'vant';\n\nconst searchRef = ref<SearchInstance>();\n\nsearchRef.value?.focus();\n
\n

Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
leftCustom left side content
actionCustom right button, displayed when show-action is true
labelCustom Search label
left-iconCustom left icon
right-iconCustom right icon
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-search-padding10px var(--van-padding-sm)-
--van-search-backgroundvar(--van-background-2)-
--van-search-content-backgroundvar(--van-gray-1)-
--van-search-input-height34px-
--van-search-label-padding0 5px-
--van-search-label-colorvar(--van-text-color)-
--van-search-label-font-sizevar(--van-font-size-md)-
--van-search-left-icon-colorvar(--van-gray-6)-
--van-search-action-padding0 var(--van-padding-xs)-
--van-search-action-text-colorvar(--van-text-color)-
--van-search-action-font-sizevar(--van-font-size-md)-
\n
'},null,8,e))}}}]);