更新记录
1.2(2020-10-30) 下载此版本
无
平台兼容性
DT-keyBoard
数字键盘,安全键盘
引入插件
在main.js中添加
import keyboard from "./components/dt-keyBroad/dt-keyboard.vue"
Vue.component('keyboard', keyboard)
使用
<keyboard :show="showIf" :failIf="failIf" ref="keyboard" @getPassword="getPassword" @hideKey="showIf=false"></keyboard>
data() {
return {
failIf: false,
showIf: false
}
},
methods: {
getPassword(e){
if(e!='123456'){
this.failIf = true
this.$refs.keyboard.clear()
setTimeout(()=>this.failIf = false,600)
}else{console.log('密码正确')}
}
}