您的位置:58脚本 > input 密码框 Vant PasswordInput 密码输入框

input 密码框 Vant PasswordInput 密码输入框

2023-03-14 22:32 Vant中文教程

input 密码框 Vant PasswordInput 密码输入框

input 密码框

input 密码框是一种 HTML 表单元素,它可以用来收集用户的密码信息。它的主要功能是让用户输入一个密码,并将其存储在服务器上,以便后续使用。

input 密码框的使用非常广泛,几乎所有的 Web 站点都会使用它来保护用户的敏感信息。它可以帮助站点防止非法访问者获取重要信息,如数据库中的密码、金融交易信息、个人详情等。

<input type="password" name="password">

input 密码框也可以通过 JavaScript 来进行客户端验证,以便在用户输入时就能够发出警告。此外,它还可以通过 CSS 来根据不同浏览器和平台来显示不同的样式。

总之,input 密码框是一个非常有用的工具,能够帮助 Web 站点保护重要数据不被非法获取。因此,在开发 Web 站点时应该考虑使用 input 密码框来保障数据安全性。

Vant PasswordInput 密码输入框

介绍

带网格的输入框组件,可以用于输入支付密码、短信验证码等,通常与数字键盘组件配合使用

引入

import Vue from "vue";
import { PasswordInput, NumberKeyboard } from "vant";

Vue.use(PasswordInput);
Vue.use(NumberKeyboard);

代码演示

基础用法

<!-- 密码输入框 -->
<van-password-input
  :value="value"
  info="密码为 6 位数字"
  :focused="showKeyboard"
  @focus="showKeyboard = true"
/>
<!-- 数字键盘 -->
<van-number-keyboard
  :show="showKeyboard"
  @input="onInput"
  @delete="onDelete"
  @blur="showKeyboard = false"
/>
export default {
  data() {
    return {
      value: "123",
      showKeyboard: true
    };
  },
  methods: {
    onInput(key) {
      this.value = (this.value + key).slice(0, 6);
    },
    onDelete() {
      this.value = this.value.slice(0, this.value.length - 1);
    }
  }
}

自定义长度

<van-password-input
  :value="value"
  :length="4"
  :gutter="15"
  :focused="showKeyboard"
  @focus="showKeyboard = true"
/>

明文展示

<van-password-input
  :value="value"
  :mask="false"
  :focused="showKeyboard"
  @focus="showKeyboard = true"
/>

错误提示

通过error-info属性可以设置错误提示信息,例如当输入六位时提示密码错误

<!-- 密码输入框 -->
<van-password-input
  :value="value"
  :error-info="errorInfo"
  :focused="showKeyboard"
  @focus="showKeyboard = true"
/>
<!-- 数字键盘 -->
<van-number-keyboard
  :show="showKeyboard"
  @input="onInput"
  @delete="onDelete"
  @blur="showKeyboard = false"
/>
export default {
  data() {
    return {
      value: "123",
      showKeyboard: true,
      errorInfo: ""
    };
  },
  methods: {
    onInput(key) {
      this.value = (this.value + key).slice(0, 6);
      if (this.value.length === 6) {
        this.errorInfo = "密码错误";
      } else {
        this.errorInfo = "";
      }
    },
    onDelete() {
      this.value = this.value.slice(0, this.value.length - 1);
    }
  }
}

API

Props

参数说明类型默认值
value密码值string""
info输入框下方文字提示string-
error-info输入框下方错误提示string-
length密码最大长度number | string6
gutter输入框格子之间的间距,如 20px 2em,默认单位为pxnumber | string0
mask是否隐藏密码内容booleantrue
focused v2.1.8是否已聚焦,聚焦时会显示光标booleanfalse

Events

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


实例演示

阅读全文
以上是58脚本为你收集整理的input 密码框 Vant PasswordInput 密码输入框全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 58脚本 58jiaoben.com 版权所有 联系我们
桂ICP备12005667号-28 Powered by CMS