Package detail

vue-mask

matisoffn558MIT1.0.0

Input masking for Vue.js apps

vue, vue-mask

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-mask

CommonJS

var Mask = require('vue-mask')

new Vue({
  el: 'body',
  directives: {
    'v-mask': Mask
  }
})