Simple customizable OTP input for Vue 3.
npm install @toneflix/otp-input

Simple customizable OTP input for Vue 3. - See a live demo here.

Read the full documentation here
``bash`
npm install @toneflix/otp-input
#or
yarn add @toneflix/otp-input
#or
pnpm add @toneflix/otp-input
You can make OTP Input available throughout your Vue project.
main.js or main.ts
`js
import '@toneflix/otp-input/dist/style.css'
import { createApp } from 'vue'
import App from './app.vue'
import OtpInput from '@toneflix/otp-input'
const app = createApp(App)
app.use(OtpInput)
app.mount('#app')
`
You can also import the component in your Vue component.
SomeComponent.vue
`vue`
SomeComponent.vue
`vue
``