Field 输入框

引入

通过以下方式来全局注册组件,更多注册方式请参考。

基础用法

可以通过 双向绑定输入框的值,通过 placeholder 设置占位提示文字。

  1. <!-- 可以使用 CellGroup 作为容器 -->
  2. <van-cell-group inset>
  3. <van-field v-model="value" label="文本" placeholder="请输入用户名" />
  4. </van-cell-group>
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const value = ref('');
  5. return { value };
  6. },
  7. };

自定义类型

根据 type 属性定义不同类型的输入框,默认值为 text

  1. <van-cell-group inset>
  2. <!-- 输入任意文本 -->
  3. <van-field v-model="text" label="文本" />
  4. <!-- 输入手机号,调起手机号键盘 -->
  5. <van-field v-model="tel" type="tel" label="手机号" />
  6. <!-- 允许输入正整数,调起纯数字键盘 -->
  7. <van-field v-model="digit" type="digit" label="整数" />
  8. <!-- 允许输入数字,调起带符号的纯数字键盘 -->
  9. <van-field v-model="number" type="number" label="数字" />
  10. <!-- 输入密码 -->
  11. <van-field v-model="password" type="password" label="密码" />
  12. </van-cell-group>
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const tel = ref('');
  5. const text = ref('');
  6. const digit = ref('');
  7. const number = ref('');
  8. const password = ref('');
  9. },
  10. };

禁用输入框

通过 readonly 将输入框设置为只读状态,通过 disabled 将输入框设置为禁用状态。

  1. <van-cell-group inset>
  2. <van-field label="文本" model-value="输入框只读" readonly />
  3. <van-field label="文本" model-value="输入框已禁用" disabled />
  4. </van-cell-group>

显示图标

通过 left-iconright-icon 配置输入框两侧的图标,通过设置 clearable 在输入过程中展示清除图标。

  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const value1 = ref('');
  5. const value2 = ref('123');
  6. return {
  7. value1,
  8. value2,
  9. };
  10. },
  11. };

错误提示

设置 required 属性表示这是一个必填项,可以配合 errorerror-message 属性显示对应的错误提示。

  1. <van-cell-group inset>
  2. <van-field
  3. v-model="username"
  4. error
  5. required
  6. label="用户名"
  7. placeholder="请输入用户名"
  8. />
  9. <van-field
  10. v-model="phone"
  11. required
  12. placeholder="请输入手机号"
  13. error-message="手机号格式错误"
  14. />
  15. </van-cell-group>
  1. <van-cell-group inset>
  2. <van-field
  3. v-model="sms"
  4. center
  5. clearable
  6. label="短信验证码"
  7. placeholder="请输入短信验证码"
  8. >
  9. <template #button>
  10. <van-button size="small" type="primary">发送验证码</van-button>
  11. </template>
  12. </van-field>
  13. </van-cell-group>

格式化输入内容

通过 formatter 属性可以对输入的内容进行格式化,通过 format-trigger 属性可以指定执行格式化的时机,默认在输入时进行格式化。

  1. <van-cell-group inset>
  2. <van-field
  3. v-model="value1"
  4. label="文本"
  5. :formatter="formatter"
  6. placeholder="在输入时执行格式化"
  7. />
  8. <van-field
  9. v-model="value2"
  10. label="文本"
  11. :formatter="formatter"
  12. format-trigger="onBlur"
  13. />
  14. </van-cell-group>
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const value1 = ref('');
  5. const value2 = ref('');
  6. // 过滤输入的数字
  7. const formatter = (value) => value.replace(/\d/g, '');
  8. return {
  9. value1,
  10. value2,
  11. formatter,
  12. };
  13. },
  14. };

高度自适应

对于 textarea,可以通过 autosize 属性设置高度自适应。

显示字数统计

设置 maxlengthshow-word-limit 属性后会在底部显示字数统计。

  1. <van-cell-group inset>
  2. <van-field
  3. v-model="message"
  4. rows="2"
  5. autosize
  6. label="留言"
  7. type="textarea"
  8. maxlength="50"
  9. placeholder="请输入留言"
  10. show-word-limit
  11. />
  12. </van-cell-group>

输入框内容对齐

通过 input-align 属性可以设置输入框内容的对齐方式,可选值为 centerright

  1. <van-cell-group inset>
  2. <van-field
  3. v-model="value"
  4. label="文本"
  5. placeholder="输入框内容右对齐"
  6. input-align="right"
  7. />

Props

Events

通过 ref 可以获取到 Field 实例并调用实例方法,详见。

类型定义

组件导出以下类型定义:

  1. import type {
  2. FieldType,
  3. FieldRule,
  4. FieldProps,
  5. FieldInstance,
  6. FieldTextAlign,
  7. FieldRuleMessage,
  8. FieldClearTrigger,
  9. FieldFormatTrigger,
  10. FieldRuleValidator,
  11. FiledRuleFormatter,
  12. FieldValidateError,
  13. FieldAutosizeConfig,
  14. FieldValidateTrigger,
  15. FieldValidationStatus,
  16. } from 'vant';
  1. import { ref } from 'vue';
  2. import type { FieldInstance } from 'vant';
  3. const fieldRef = ref<FieldInstance>();

Slots

样式变量

组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 ConfigProvider 组件

设置 type 为 number 后,为什么 input 标签的类型仍为 text?

HTML 原生的 type="number" 属性在 iOS 和 Android 系统上都存在一定问题,比如 maxlength 属性不生效、无法获取到完整的输入内容等。因此设置 type 为 number 时,Field 不会使用原生的 type="number" 属性,而是用现代浏览器支持的 来控制输入键盘的类型。

为什么 v-model 绑定的值被更新为 string 类型?

Field 组件内部会将传入的 v-model 格式化为 string 类型,便于组件内部进行处理。

如果你希望在 v-model 上绑定 number 类型,可以使用 Vue 提供的 。

  1. <van-field v-model.number="value" type="tel" />

在桌面端点击清除按钮无效?

清除按钮监听是的移动端 Touch 事件,参见。