@k4ung/svelte-otp
Version:
A simple lightweight OTP input component for svelte.
19 lines (11 loc) • 334 B
Markdown
## Controlling the state
You can easily control the state of the value by binding it to the `value` prop.
You can also change the number of inputs through the `numOfInputs` prop.
<br/>
```js
<script>
import SvelteOtp from ‘@kaung/svelte-otp’;
let value = 'abc12'
</script>
<SvelteOtp numOfInputs={5} bind:value />
```