I don't want to use a schema, I want my users to manually validate the form via a function()
yet, I want to leverage superform for all the rest, error handling, snapshot, timers in particular.
it would be great if a code like this could compile:
form = superForm(defaults(),{
onUpdate: ({ form, errors }) => onsubmit?.(form.data, errors),
resetForm: false,
SPA: true,
validators: undefined,
});
in the end, something intuitive, similar to the way HTML works
I don't want to use a schema, I want my users to manually validate the form via a function()
yet, I want to leverage superform for all the rest, error handling, snapshot, timers in particular.
it would be great if a code like this could compile:
in the end, something intuitive, similar to the way HTML works