Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

password-virtual-keyboard-vue

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

password-virtual-keyboard-vue

``` 本组件是在闲暇之余随便写的一个简单的密码模拟键盘,支持数字、特殊字符、字母大小写,同时目前还未正式完善,因此在有时间的情况下会进行补充完善 ```

  • 1.0.7
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

password-virtual-keyboard-vue

本组件是在闲暇之余随便写的一个简单的密码模拟键盘,支持数字、特殊字符、字母大小写,同时目前还未正式完善,因此在有时间的情况下会进行补充完善
v1.0.x 版本说明

  1.0.7 *新增明/密文显示按钮,新增输入光标显示

  1.0.6 *修复列表样式问题

  1.0.5 *修复部分bug,对样式细节进行了完善,添加自定义密码长度功能

  1.0.4 *简单的进行键盘模拟,支持changeInputValue(触发键盘按键时)与complete(点击完成按钮时)回调
组件技术栈
JavaScript、Vuejs
使用教程
使用终端安装
npm install password-virtual-keyboard-vue  
在vue/main.js中进行组件注册
import keyboard from 'password-virtual-keyboard-vue'

Vue.use(keyboard)
在页面中使用
<template>
  <div id="app">
    <Keyboard @complete="getResult" @changeInputValue="changeValue" :inputNum="6" :showClear="true"></Keyboard>
  </div>
</template>

<script>
export default {
  name: 'App',
  methods:{
    getResult(e){
      console.log(e)
    },
    changeValue(e){
      console.log(e)
    }
  }
}
</script>
参数说明
@complete | Function | 点击完成按钮触发
@changeInputValue  |  Function  |  点击按键输入时触发
:inputNum | Number  |  可定义密码长度,默认为6个
:showClear | Boolean | 可设置是否显示明/密文按钮,默认为false

Keywords

FAQs

Package last updated on 02 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc