npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@sakhnovkrg/vue-otp-input

v1.0.0

Published

OTP input component for Vue 3

Downloads

8

Readme

Vue OTP Input

A clean, intuitive OTP (One-Time Password) input component for Vue 3.

Demo

Live Demo

Features

  • ✨ Auto-focus and smart navigation
  • 📱 Mobile-friendly with touch support
  • 🎨 Customizable via CSS variables
  • 🚀 Easy to use
  • 🔧 TypeScript support
  • 📋 Clipboard paste handling
  • ⚡ Lightweight with no dependencies

Installation

npm install @sakhnovkrg/vue-otp-input

Basic Usage

<template>
  <div>
    <OTPInput v-model="otp" :length="6" @complete="handleComplete" />
  </div>
</template>

<script setup>
import { ref } from 'vue'
import { OTPInput } from '@sakhnovkrg/vue-otp-input'
// Optional: Import default styles
import '@sakhnovkrg/vue-otp-input/dist/index.css'

const otp = ref('')

const handleComplete = value => {
  console.log('OTP completed:', value)
}
</script>

Props

| Prop | Type | Default | Description | | ------------ | --------- | ------- | ------------------------------------ | | modelValue | string | "" | The OTP value (used by v-model) | | length | number | 6 | Number of input fields | | disabled | boolean | false | Disable all inputs | | hasError | boolean | false | Controls error styling (red borders) | | autoFocus | boolean | true | Auto-focus first input on mount |

Events

| Event | Payload | Description | | ------------------- | -------- | ---------------------------------- | | update:modelValue | string | Emitted when value changes | | complete | string | Emitted when all fields are filled | | change | string | Emitted on any input change |

Methods

Access component methods via template ref:

<template>
  <OTPInput ref="otpRef" v-model="otp" />
  <button @click="clearOTP">Clear</button>
</template>

<script setup>
import { ref } from 'vue'
import { OTPInput } from '@sakhnovkrg/vue-otp-input'

const otpRef = ref()

const clearOTP = () => {
  otpRef.value?.clear()
}
</script>

| Method | Parameters | Description | | ----------------- | ---------- | --------------------------------- | | clear() | - | Clear all inputs | | focus(index?) | number | Focus specific input (default: 0) | | setValue(value) | string | Set OTP value programmatically |

Error Handling

The component only provides visual error styling via the hasError prop. Error messages should be displayed separately by the parent component:

<template>
  <div>
    <OTPInput v-model="otp" :has-error="hasError" @change="clearError" />
    <div v-if="errorMessage" class="error">{{ errorMessage }}</div>
  </div>
</template>

<script setup>
const otp = ref('')
const hasError = ref(false)
const errorMessage = ref('')

// Show error
const showError = () => {
  hasError.value = true
  errorMessage.value = 'Invalid code'
}

// Clear error (automatically called on user input)
const clearError = () => {
  hasError.value = false
  errorMessage.value = ''
}
</script>

Styling

The component comes with default styles that you can optionally import:

// In your main.js or component
import '@sakhnovkrg/vue-otp-input/dist/index.css'

Internally the component renders:

<div class="otp-container">
  <div class="otp-inputs has-error disabled">
    <input class="otp-digit filled" ... />
    <input class="otp-digit" ... />
    <!-- ... -->
  </div>
</div>

Dynamic classes:

| Class | When applied | | ----------- | ----------------------------------------------- | | has-error | When hasError prop is true | | disabled | When disabled prop is true | | filled | On each <input> that already contains a digit |

For most customizations you only need to override the CSS variables below.
Use the classes above only if you need deeper or completely custom styling.

Customize appearance using CSS variables:

:root {
  /* Colors */
  --otp-accent: #3b82f6;
  --otp-error: #ef4444;
  --otp-border: #d1d5db;
  --otp-bg: #fff;
  --otp-text: #111827;

  /* Dimensions */
  --otp-width: 3rem;
  --otp-height: 3rem;
  --otp-radius: 0.5rem;
  --otp-font: 1rem;
  --otp-gap: 0.5rem;

  /* Mobile */
  --otp-mobile-width: 2.5rem;
  --otp-mobile-height: 2.5rem;
  --otp-mobile-font: 0.9rem;

  /* Effects */
  --otp-focus-ring: 2px;
  --otp-shake-distance: 2px;
  --otp-shake-duration: 0.25s;
}