
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
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 620 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.