/*! For license information please see 29.8204ed5c.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["29"],{46390:function(s,n,a){"use strict";a.r(n);var t=a("80681");let l=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Field component let users enter and edit text.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { Field, CellGroup } from 'vant';\n\nconst app = createApp();\napp.use(Field);\napp.use(CellGroup);\n
\nThe value of field is bound with v-model.
\n<van-cell-group inset>\n <van-field v-model="value" label="Label" placeholder="Text" />\n</van-cell-group>\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const value = ref('');\n return { value };\n },\n};\n
\nUse type
prop to custom different type fields.
<van-cell-group inset>\n <van-field v-model="text" label="Text" />\n <van-field v-model="tel" type="tel" label="Phone" />\n <van-field v-model="digit" type="digit" label="Digit" />\n <van-field v-model="number" type="number" label="Number" />\n <van-field v-model="password" type="password" label="Password" />\n</van-cell-group>\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const tel = ref('');\n const text = ref('');\n const digit = ref('');\n const number = ref('');\n const password = ref('');\n\n return { tel, text, digit, number, password };\n },\n};\n
\n<van-cell-group inset>\n <van-field label="Text" model-value="Input Readonly" readonly />\n <van-field label="Text" model-value="Input Disabled" disabled />\n</van-cell-group>\n
\n<van-cell-group inset>\n <van-field\n v-model="value1"\n label="Text"\n left-icon="smile-o"\n right-icon="warning-o"\n placeholder="Show Icon"\n />\n <van-field\n v-model="value2"\n clearable\n label="Text"\n left-icon="music-o"\n placeholder="Show Clear Icon"\n />\n</van-cell-group>\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const value1 = ref('');\n const value2 = ref('123');\n return {\n value1,\n value2,\n };\n },\n};\n
\nUse the required
prop to display a required asterisk.
<van-cell-group inset>\n <van-field\n v-model="username"\n required\n label="Username"\n placeholder="Username"\n />\n <van-field v-model="phone" required label="Phone" placeholder="Phone" />\n</van-cell-group>\n
\nPlease note that the required
prop is only used for controlling the style. For form validation, you need to use the rule.required
option to control the validation logic.
You can set required="auto"
on the Form component, and all the fields inside the Form will automatically display the asterisk based on the rule.required
option.
<van-form required="auto">\n <van-field\n v-model="username"\n :rules="[{ required: true }]"\n label="Username"\n placeholder="Username"\n />\n <van-field\n v-model="phone"\n :rules="[{ required: false }]"\n label="Phone"\n placeholder="Phone"\n />\n</van-form>\n
\nUse error
or error-message
to show error info.
<van-cell-group inset>\n <van-field v-model="username" error label="Username" placeholder="Username" />\n <van-field\n v-model="phone"\n label="Phone"\n placeholder="Phone"\n error-message="Invalid phone"\n />\n</van-cell-group>\n
\nUse button slot to insert button.
\n<van-cell-group inset>\n <van-field v-model="sms" center clearable label="SMS" placeholder="SMS">\n <template #button>\n <van-button size="small" type="primary">Send SMS</van-button>\n </template>\n </van-field>\n</van-cell-group>\n
\nUse formatter
prop to format the input value.
<van-cell-group inset>\n <van-field\n v-model="value1"\n label="Text"\n :formatter="formatter"\n placeholder="Format On Change"\n />\n <van-field\n v-model="value2"\n label="Text"\n :formatter="formatter"\n format-trigger="onBlur"\n placeholder="Format On Blur"\n />\n</van-cell-group>\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const value1 = ref('');\n const value2 = ref('');\n const formatter = (value) => value.replace(/\\d/g, '');\n\n return {\n value1,\n value2,\n formatter,\n };\n },\n};\n
\nTextarea Field can be auto resize when has autosize
prop.
<van-cell-group inset>\n <van-field\n v-model="message"\n label="Message"\n type="textarea"\n placeholder="Message"\n rows="1"\n autosize\n />\n</van-cell-group>\n
\n<van-cell-group inset>\n <van-field\n v-model="message"\n rows="2"\n autosize\n label="Message"\n type="textarea"\n maxlength="50"\n placeholder="Message"\n show-word-limit\n />\n</van-cell-group>\n
\nUse input-align
prop to align the input value.
<van-cell-group inset>\n <van-field\n v-model="value"\n label="Text"\n placeholder="Input Align Right"\n input-align="right"\n />\n</van-cell-group>\n
\nUse label-align
prop to align the input value, can be set to center
, right
or top
.
<van-cell-group inset>\n <van-field\n v-model="value"\n label="Label"\n placeholder="Align Top"\n label-align="top"\n />\n <van-field\n v-model="value2"\n label="Label"\n placeholder="Align Left"\n label-align="left"\n />\n <van-field\n v-model="value3"\n label="Label"\n placeholder="Align Center"\n label-align="center"\n />\n <van-field\n v-model="value4"\n label="Label"\n placeholder="Align Right"\n label-align="right"\n />\n</van-cell-group>\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
id | \nInput id, the for attribute of the label also will be set | \nstring | \nvan-field-n-input | \n
type | \nInput type, support all native types and digit type | \nFieldType | \ntext | \n
size | \nSize, can be set to large normal | \nstring | \n- | \n
maxlength | \nMax length of value | \nnumber | string | \n- | \n
placeholder | \nInput placeholder | \nstring | \n- | \n
border | \nWhether to show inner border | \nboolean | \ntrue | \n
disabled | \nWhether to disable field | \nboolean | \nfalse | \n
readonly | \nWhether to be readonly | \nboolean | \nfalse | \n
colon | \nWhether to display colon after label | \nboolean | \nfalse | \n
required | \nWhether to show required mark | \nboolean | \'auto\' | \nnull | \n
center | \nWhether to center content vertically | \nboolean | \ntrue | \n
clearable | \nWhether to be clearable | \nboolean | \nfalse | \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 | \nFieldClearTrigger | \nfocus | \n
clickable | \nWhether to show click feedback when clicked | \nboolean | \nfalse | \n
is-link | \nWhether to show link icon | \nboolean | \nfalse | \n
autofocus | \nWhether to auto focus, unsupported in iOS | \nboolean | \nfalse | \n
show-word-limit | \nWhether to show word limit, need to set the maxlength prop | \nboolean | \nfalse | \n
error | \nWhether to mark the input content in red | \nboolean | \nfalse | \n
error-message | \nError message | \nstring | \n- | \n
error-message-align | \nError message align, can be set to center right | \nFieldTextAlign | \nleft | \n
formatter | \nInput value formatter | \n(val: string) => string | \n- | \n
format-trigger | \nWhen to format value, can be set to onBlur | \nFieldFormatTrigger | \nonChange | \n
arrow-direction | \nCan be set to left up down | \nstring | \nright | \n
label-class | \nLabel className | \nstring | Array | object | \n- | \n
label-width | \nLabel width | \nnumber | string | \n6.2em | \n
label-align | \nLabel align, can be set to center right top | \nFieldTextAlign | \nleft | \n
input-align | \nInput align, can be set to center right | \nFieldTextAlign | \nleft | \n
autosize | \nTextarea auto resize, can accept an object, e.g. { maxHeight: 100, minHeight: 50 } | \nboolean | FieldAutosizeConfig | \nfalse | \n
left-icon | \nLeft side icon name | \nstring | \n- | \n
right-icon | \nRight side icon name | \nstring | \n- | \n
icon-prefix | \nIcon className prefix | \nstring | \nvan-icon | \n
rules | \nForm validation rules | \nFieldRule[] | \n- | \n
autocomplete | \nHTML native attribute, see MDN - autocomplete | \nstring | \n- | \n
autocapitalize v4.6.2 | \nHTML native attribute, see MDN - autocapitalize | \nstring | \n- | \n
enterkeyhint | \nHTML native attribute, see MDN - enterkeyhint | \nstring | \n- | \n
spellcheck v4.6.2 | \nHTML native attribute, see MDN - spellcheck | \nboolean | \n- | \n
autocorrect v4.6.2 | \nSafari only, see MDN - autocorrect | \nstring | \n- | \n
Event | \nDescription | \nArguments | \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
clear | \nEmitted when the clear icon is clicked | \nevent: MouseEvent | \n
click | \nEmitted when component is clicked | \nevent: MouseEvent | \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
start-validate | \nEmitted when start validation | \n- | \n
end-validate | \nEmitted when end validation | \n{ status: string, message: string } | \n
Use ref to get Field 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 {\n FieldType,\n FieldRule,\n FieldProps,\n FieldInstance,\n FieldTextAlign,\n FieldRuleMessage,\n FieldClearTrigger,\n FieldFormatTrigger,\n FieldRuleValidator,\n FieldRuleFormatter,\n FieldValidateError,\n FieldAutosizeConfig,\n FieldValidateTrigger,\n FieldValidationStatus,\n} from 'vant';\n
\nFieldInstance
is the type of component instance:
import { ref } from 'vue';\nimport type { FieldInstance } from 'vant';\n\nconst fieldRef = ref<FieldInstance>();\n\nfieldRef.value?.focus();\n
\nName | \nDescription | \nSlotProps | \n
---|---|---|
label | \nCustom label | \n- | \n
input | \nCustom input | \n- | \n
left-icon | \nCustom left icon | \n- | \n
right-icon | \nCustom right icon | \n- | \n
button | \nInsert button | \n- | \n
error-message | \nCustom error message | \n{ message: string } | \n
extra | \nCustom content on the right | \n- | \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-field-label-width | \n6.2em | \n- | \n
--van-field-label-color | \nvar(--van-text-color) | \n- | \n
--van-field-label-margin-right | \nvar(--van-padding-sm) | \n- | \n
--van-field-input-text-color | \nvar(--van-text-color) | \n- | \n
--van-field-input-error-text-color | \nvar(--van-danger-color) | \n- | \n
--van-field-input-disabled-text-color | \nvar(--van-text-color-3) | \n- | \n
--van-field-placeholder-text-color | \nvar(--van-text-color-3) | \n- | \n
--van-field-icon-size | \n18px | \n- | \n
--van-field-clear-icon-size | \n18px | \n- | \n
--van-field-clear-icon-color | \nvar(--van-gray-5) | \n- | \n
--van-field-right-icon-color | \nvar(--van-gray-6) | \n- | \n
--van-field-error-message-color | \nvar(--van-danger-color) | \n- | \n
--van-field-error-message-font-size | \n12px | \n- | \n
--van-field-text-area-min-height | \n60px | \n- | \n
--van-field-word-limit-color | \nvar(--van-gray-7) | \n- | \n
--van-field-word-limit-font-size | \nvar(--van-font-size-sm) | \n- | \n
--van-field-word-limit-line-height | \n16px | \n- | \n
--van-field-disabled-text-color | \nvar(--van-text-color-3) | \n- | \n
--van-field-required-mark-color | \nvar(--van-red) | \n- | \n