PasswordInput 密码输入框

密码输入框组件通常与 数字键盘 组件配合使用

使用指南

  1. import { PasswordInput, NumberKeyboard } from 'vant';
  2. Vue.use(PasswordInput).use(NumberKeyboard);

代码演示

基础用法

  1. <!-- 密码输入框 -->
  2. <van-password-input
  3. :value="value"
  4. info="密码为 6 位数字"
  5. @focus="showKeyboard = true"
  6. />
  7. <!-- 数字键盘 -->
  8. <van-number-keyboard
  9. :show="showKeyboard"
  10. @input="onInput"
  11. @delete="onDelete"
  12. @blur="showKeyboard = false"
  13. />
  1. export default {
  2. data() {
  3. return {
  4. value: '123',
  5. showKeyboard: true
  6. };
  7. },
  8. methods: {
  9. onInput(key) {
  10. this.value = (this.value + key).slice(0, 6);
  11. },
  12. onDelete() {
  13. this.value = this.value.slice(0, this.value.length - 1);
  14. }
  15. }
  16. }

API

参数 说明 类型 默认值
value 密码值 String ''
length 密码最大长度 Number 6
info 输入框下方提示 String -
error-info 输入框下方错误提示 String -

Event

事件名 说明 参数
focus 输入框聚焦时触发 -

原文:

https://youzan.github.io/vant/#/zh-CN/password-input