Validates that the specified value is within a numeric range.
useForm(({ range }) => ({ age: [range(19, 99)] }));
The starting boundary of the range.
The ending boundary of the range.
The validator options.
The validation object.
Generated using TypeDoc
Validates that the specified value is within a numeric range.
useForm(({ range }) => ({ age: [range(19, 99)] }));