Built-in rules, custom messages, your own validators.
required(), minLength(), min() - or a custom validator fn with a matching error key. Every message can be the built-in default, a string, a function, or a component.
validators: [
required(),
minLength({ value: 3, errorMessage: 'Too short' }),
min({ value: 18,
errorMessage: (err) => `Must be at least ${err['min']}` }),
]