
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
v-pin-input
Advanced tools
Vue Pin Input is a Vue 3 input component for pins, otp etc.
Here is a live demo

yarn add v-pin-input
# or
npm i v-pin-input
import { createApp } from 'vue'
import App from './App.vue'
import PinInput from 'v-pin-input'
const app = createApp(App)
app.use(PinInput)
app.mount('#app')
<script setup lang="ts">
import { ref } from 'vue'
const model = ref('')
const handleCompleted = (val: string) => {
console.log('Completed', val)
}
</script>
<template>
<pin-input
class="wrapper"
v-model="model"
:length="6"
autofocus
input-class="pinInput"
@completed="handleCompleted"
/>
</template>
<style>
.wrapper {
display: flex;
gap: 4px;
}
.pinInput {
width: 20px;
padding: 4px;
border: none;
border-bottom: 2px solid black;
font-size: 1.5rem;
color: black;
margin-right: 4px;
text-align: center;
}
.pinInput:focus {
outline: none;
}
</style>
| Property | Type | Default | Description |
|---|---|---|---|
length | number | 4 | The amount of the inputs |
autofocus | boolean | true | Autofocus on first input on component load. |
secure | boolean | false | Display * instead of character |
characterPreview | boolean | true | Display character before switch to * in secure mode |
charPreviewDuration | number | 300 | Ms to show the character before switch back to * |
blurOnComplete | boolean | false | true if you want to blur the input when completed |
| Name | Payload | Description |
|---|---|---|
completed | string | Called once the user completes the input (fills the last empty input) |
This is pretty much a combination of vue-split-input and vue-pincode-input
FAQs
Vue Pin Input is a Vue 3 input component for pins, otp etc.
The npm package v-pin-input receives a total of 510 weekly downloads. As such, v-pin-input popularity was classified as not popular.
We found that v-pin-input 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.