Set of vue directives to add text restriction to your vue input (uppercase, lowercase, numeric, alphabetic, max length)
npm install vue-input-restriction-directivesjavascript
import VueInputRestrictionDirectives from 'vue-input-restriction-directives';
Vue.use(VueInputRestrictionDirectives);
// for only number input
// for only alphabetic input
// for only uppercase input
// for only lowecase input
// for limit number of characteres input
``