/*! 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:'
Input box component for search scenarios.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { Search } from 'vant';\n\nconst app = createApp();\napp.use(Search);\n
\n<van-search v-model="value" placeholder="Placeholder" />\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const value = ref('');\n return { value };\n },\n};\n
\nsearch
event will be Emitted when click the search button on the keyboard, cancel
event will be Emitted when click the cancel button.
<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
\nimport { 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\nTips: There will be a search button on the keyboard when Search is inside a form in iOS.
\n
<van-search v-model="value" input-align="center" placeholder="Placeholder" />\n
\n<van-search v-model="value" disabled placeholder="Placeholder" />\n
\n<van-search\n v-model="value"\n shape="round"\n background="#4fc08d"\n placeholder="Placeholder"\n/>\n
\nUse action
slot to custom right button, cancel
event will no longer be Emitted when use this slot.
<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
\nimport { 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
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
v-model | \nInput value | \nnumber | string | \n- | \n
label | \nLeft side label | \nstring | \n- | \n
name | \nAs the identifier when submitting the form | \nstring | \n- | \n
shape | \nShape of field, can be set to round | \nstring | \nsquare | \n
id | \nInput id, the for attribute of the label also will be set | \nstring | \nvan-search-n-input | \n
background | \nBackground color of field | \nstring | \n#f2f2f2 | \n
maxlength | \nMax length of value | \nnumber | string | \n- | \n
placeholder | \nPlaceholder | \nstring | \n- | \n
clearable | \nWhether to be clearable | \nboolean | \ntrue | \n
clear-icon | \nClear icon name | \nstring | \nclear | \n
clear-trigger | \nWhen 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 focused | \nstring | \nfocus | \n
autofocus | \nWhether to auto focus, unsupported in iOS | \nboolean | \nfalse | \n
show-action | \nWhether to show right action button | \nboolean | \nfalse | \n
action-text | \nText of action button | \nstring | \nCancel | \n
disabled | \nWhether to disable field | \nboolean | \nfalse | \n
readonly | \nWhether to be readonly | \nboolean | \nfalse | \n
error | \nWhether to mark the input content in red | \nboolean | \nfalse | \n
error-message | \nError message | \nstring | \n- | \n
formatter | \nInput value formatter | \n(val: string) => string | \n- | \n
format-trigger | \nWhen to format value, can be set to onBlur | \nstring | \nonChange | \n
input-align | \nText align of field, can be set to center right | \nstring | \nleft | \n
left-icon | \nLeft icon name | \nstring | \nsearch | \n
right-icon | \nRight icon name | \nstring | \n- | \n
autocomplete | \nautocomplete attribute of native input element | \nstring | \n- | \n
Event | \nDescription | \nArguments | \n
---|---|---|
search | \nEmitted when confirming search | \nvalue: string | \n
update:model-value | \nEmitted when input value changed | \nvalue: string | \n
focus | \nEmitted when input is focused | \nevent: Event | \n
blur | \nEmitted when input is blurred | \nevent: Event | \n
click-input | \nEmitted when the input is clicked | \nevent: MouseEvent | \n
click-left-icon | \nEmitted when the left icon is clicked | \nevent: MouseEvent | \n
click-right-icon | \nEmitted when the right icon is clicked | \nevent: MouseEvent | \n
clear | \nEmitted when the clear icon is clicked | \nevent: MouseEvent | \n
cancel | \nEmitted when the cancel button is clicked | \n- | \n
Use ref to get Search instance and call instance methods.
\nName | \nDescription | \nAttribute | \nReturn value | \n
---|---|---|---|
focus | \nTrigger input focus | \n- | \n- | \n
blur | \nTrigger input blur | \n- | \n- | \n
The component exports the following type definitions:
\nimport type { SearchProps, SearchShape, SearchInstance } from 'vant';\n
\nSearchInstance
is the type of component instance:
import { ref } from 'vue';\nimport type { SearchInstance } from 'vant';\n\nconst searchRef = ref<SearchInstance>();\n\nsearchRef.value?.focus();\n
\nName | \nDescription | \n
---|---|
left | \nCustom left side content | \n
action | \nCustom right button, displayed when show-action is true | \n
label | \nCustom Search label | \n
left-icon | \nCustom left icon | \n
right-icon | \nCustom right icon | \n
The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.
\nName | \nDefault Value | \nDescription | \n
---|---|---|
--van-search-padding | \n10px var(--van-padding-sm) | \n- | \n
--van-search-background | \nvar(--van-background-2) | \n- | \n
--van-search-content-background | \nvar(--van-gray-1) | \n- | \n
--van-search-input-height | \n34px | \n- | \n
--van-search-label-padding | \n0 5px | \n- | \n
--van-search-label-color | \nvar(--van-text-color) | \n- | \n
--van-search-label-font-size | \nvar(--van-font-size-md) | \n- | \n
--van-search-left-icon-color | \nvar(--van-gray-6) | \n- | \n
--van-search-action-padding | \n0 var(--van-padding-xs) | \n- | \n
--van-search-action-text-color | \nvar(--van-text-color) | \n- | \n
--van-search-action-font-size | \nvar(--van-font-size-md) | \n- | \n