日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

多层html怎么找到密码输入框,Vant PasswordInput 密码输入框

發布時間:2025/3/12 编程问答 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 多层html怎么找到密码输入框,Vant PasswordInput 密码输入框 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

介紹

帶網格的輸入框組件,可以用于輸入支付密碼、短信驗證碼等,通常與數字鍵盤組件配合使用

引入import Vue from 'vue';

import { PasswordInput, NumberKeyboard } from 'vant';

Vue.use(PasswordInput);

Vue.use(NumberKeyboard);

代碼演示

基礎用法

:value="value"

info="密碼為 6 位數字"

:focused="showKeyboard"

@focus="showKeyboard = true"

/>

: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);

}

}

}

自定義長度

:value="value"

:length="4"

:gutter="15"

:focused="showKeyboard"

@focus="showKeyboard = true"

/>

明文展示

:value="value"

:mask="false"

:focused="showKeyboard"

@focus="showKeyboard = true"

/>

錯誤提示

通過error-info屬性可以設置錯誤提示信息,例如當輸入六位時提示密碼錯誤

:value="value"

:error-info="errorInfo"

:focused="showKeyboard"

@focus="showKeyboard = true"

/>

: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輸入框聚焦時觸發-

總結

以上是生活随笔為你收集整理的多层html怎么找到密码输入框,Vant PasswordInput 密码输入框的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。