Reputation: 167
I want to do form validation with some required inputs and some custom validation in sveltestrap. U used events like on:blur, on:change but are there any standard mechanism to deal with common validation like required?
Upvotes: 0
Views: 865
Reputation: 1109
Events except submit are not bound as per Sveltestrap Form. While it is possible to handle all the events on form, I can recommend yup
and a svelte component with a little setup called Felte check REPL
Upvotes: 1