vue-mask
v1.0.0
Published
Input masking for Vue.js apps
Readme
vue-mask
Input masking directive for Vue.js
The directive can be attached to inputs and used like so v-mask="99/99/9999".
Installation
NPM
$ npm install vue-maskCommonJS
var Mask = require('vue-mask')
new Vue({
el: 'body',
directives: {
'v-mask': Mask
}
})