Closed
Description
The component currently has a set of predefined validation error messages inside resources
object in validators.js
.
It would be very nice to be able to specify custom validation messages other than those that are predefined.
Example:
required:true,
min:6,
validator: VueFormGenerator.validators.string,
validatorMessage: "Password must be at least {1} characters",
This would basically replace the predefined message textTooSmall
and would display the specified validatorMessage.