Great pincode input component for Vue.js applications.
Demo on GitHub Pages
Styles that component have are written just for demo. But that styles are override-friendly, so you can write any styles you want.
```
npm i --save vue-codeinput`
or with yarn`
yarn add vue-codeinput
Then in any component:
``
import PincodeInput from 'vue-codeinput';
// The name can be different depending on your desire
``
v-model="code"
placeholder="-"
:length="5"
@fillcomplete="(val)=>{messsage=now finished ${val}}"
/>
Attention: you should use _'input.vue-codeinput'_ instead _'.vue-codeinput'_ in order to rule specificity was higher
`