Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@gauseen/keyboard-for-vue
Advanced tools
virtual keyboard
同时使用# 安装
yarn add @gauseen/keyboard-for-vue
# OR
npm i -S @gauseen/keyboard-for-vue
// main.js
import Vue from 'vue'
import KeyboardForVue from '@gauseen/keyboard-for-vue'
Vue.use(KeyboardForVue)
<link rel="stylesheet" href="https://unpkg.com/@gauseen/keyboard-for-vue/dist/keyboardForVue.css">
<script src="https://unpkg.com/@gauseen/keyboard-for-vue"></script>
<template>
<div class="demo">
<form>
<fieldset>
<legend>keyboard for vue:</legend>
Name: <input v-model="name" @focus="onFocus" autofocus type="text">
<p>{{name}}</p>
Email: <input v-model="email" @focus="onFocus" type="text"><br>
<p>{{email}}</p>
Money: <input v-model="money" @focus="onFocus" type="text"><br>
<p>{{money}}</p>
<div>
Switch style:
<input type="radio" id="normal" value="normal" v-model="keyboardStyle">
<label for="normal">normal</label>
<input type="radio" id="number" value="number" v-model="keyboardStyle">
<label for="number">number</label>
<button @click.prevent="handleClear"> Clear </button>
</div>
</fieldset>
</form>
<keyboard-for-vue
:input="input"
:is-show.sync="isShow"
:keyboard-style="keyboardStyle"
@on-close="handleClosed"
>
</keyboard-for-vue>
</div>
</template>
<script>
export default {
name: 'Demo',
data () {
return {
keyboardStyle: 'normal',
isShow: false,
input: null,
name: 'gauseen',
email: '',
money: ''
}
},
methods: {
onFocus (e) {
this.input = e.target
this.isShow = true
},
handleClear (e) {
this.name = ''
this.email = ''
this.money = ''
this.isShow = false
},
handleClosed (value) {
window.alert(value)
}
}
}
</script>
属性 | 类型 | 说明 | 默认参数 | 可选值 | 必填? |
---|---|---|---|---|---|
input | HTMLInputElement | 键盘将要输入的 input DOM 对象 | - | input DOM | 否 |
is-show.sync | Boolean | 虚拟键盘是否显示 | false | true、false | 否 |
keyboard-style | String | 虚拟键盘是否显示 | normal | normal、number | 否 |
font-color | String | 键盘字体颜色 | #fff | - | 否 |
line-style-height | String | 每个键的高度 | 60px | - | 否 |
key-style-bg-color | String | 每个键背景色 | #5b6878 | - | 否 |
方法 | 说明 | 回调参数 |
---|---|---|
on-close | 键盘消失时回调 | function(inputValue) |
FAQs
virtual keyboard for vue
The npm package @gauseen/keyboard-for-vue receives a total of 0 weekly downloads. As such, @gauseen/keyboard-for-vue popularity was classified as not popular.
We found that @gauseen/keyboard-for-vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.