Vue.js plugin which is based on the InputMask
npm install vue-inputmask-ng##### Include vue-inputmask-ng after Vue and it will install itself automatically:
``html`
##### When used with a module system, you must install it via Vue.use():
``
npm install vue-inputmask-ng
`javascript`
import VueInputMask from 'vue-inputmask-ng'
Vue.use(VueInputMask)
##### Usage as directive
`html`
##### Usage as component
`html`
##### Vue instance methods
`javascript`
this.$inputMaskFormat('2331973', { alias: 'datetime', inputFormat: 'dd/mm/yyyy' })
this.$inputMaskIsValid('23/03/1973', { alias: 'datetime', inputFormat: 'dd/mm/yyyy' })
##### Development
```
npm install
npm run build