RonaldJerez / vue-input-facade

A lightweight and dependency free input masking library created specific for Vue
https://ronaldjerez.github.io/vue-input-facade/latest/
182 stars 27 forks source link

Documentation note regarding Vuetify #14

Closed ktiedt closed 4 years ago

ktiedt commented 4 years ago

In order for the v-facade directive to work with Vuetify you have to call the Vue.use(InputFacade); after Vuetify plugin is loaded.

Hope this helps someone else until Vuetify integrates masking (or your handy plugin) again!

ktiedt commented 4 years ago

Although, i cannot seem to access the unmasked value... even using the event = $event example

RonaldJerez commented 4 years ago

Yea it was mentioned in another issue, seems as vuetify is not sending the event as 2nd param. You’ll need to use ‘@input.native’ to be able to access the event param. I’m looking to see if there is any other intuitive way to send the unmasked value with vuetify.

ktiedt commented 4 years ago

Ahh thank you, I will give that a try. I only noticed the 2 duplicate issues when I searched, but I didnt perhaps read every comment. Definitely appreciate you filling this missing gap in Vue/Vuetify