JSPM

vue-inputmask

0.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4705
  • Score
    100M100P100Q120252F

InputMask for Vue.js

Package Exports

  • vue-inputmask

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-inputmask) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

vue-inputmask

Vue.js directive to add input mask.

It's a binding for the jquery.inputmask library by Robin Herbots https://github.com/RobinHerbots/Inputmask

This library is licensed under MIT Licence.

Usage

var VueInputmask = require('vue-inputmask');

Vue.use(VueInputmask);
<input type="text" v-mask="'99/99/9999'" />
<input type="text" v-mask="{mask: '99/99/9999', greedy: true}" />