Using Vue.js and Vee-Validate, how can I change the default error messages?
Out of the box, for the required message, it will display, "The <fieldname> field is required." But I just want all fields that are required to display "Required" instead. I know I can override individual fields but I just want to globally override any field that displays a required error to display "Required".
Have a look at Field-specific Custom Messages in the official documentation.
You basically have to provide a custom dict for each language you want to override.