You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In previous VeeValidate versions we had something like this to setup custom styling for form inputs without having to create Vue components for each input type:
import Vue from 'vue';
import VeeValidate from 'vee-validate';
Vue.use(VeeValidate, {
classes: true,
classNames: {
valid: 'is-valid',
invalid: 'is-invalid'
}
});
Is something like this possible in VeeValidate 4? The only thing I found in the docs is this, which only works if I set Vue components for each input field type.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hey everyone!
In previous VeeValidate versions we had something like this to setup custom styling for form inputs without having to create Vue components for each input type:
Is something like this possible in VeeValidate 4? The only thing I found in the docs is this, which only works if I set Vue components for each input field type.
Beta Was this translation helpful? Give feedback.
All reactions