Hello, I was wondering if it possible to use the both plugin together to handle masked inputs more easily, specially with label placeholder option.
I've tried to implement this, but the result wasn't satisfactory, there is any way to do this?
Import vue-the-mask locally on the component as a directive:
import {mask} from 'vue-the-mask'
export default {
directives: {mask}
}
Then use it in the input like that:
<vs-input v-mask="['(##) ####-####', '(##) #####-####']" />
Most helpful comment
Import vue-the-mask locally on the component as a directive:
Then use it in the input like that: