I'm trying to remove the prefix from vee-validate error message.
Every error fields are returning with a prefix of The
ex: The field_name is required
.
I know I can change it with Custom Error Message like this.
const dict = {
custom: {
field_name: {
required: 'field_name is required.'
}
}
};
this.$validator.localize('en', dict);
But going like this is too much since I have many fields and it's not a DRY concept.
Is there a better way of doing this?