From 25913188a7657004622153cd1784b34b044dca03 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Wed, 9 Apr 2025 15:38:49 +0200 Subject: [PATCH] docs(form): improve joi example --- docs/app/components/content/examples/form/FormExampleJoi.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/app/components/content/examples/form/FormExampleJoi.vue b/docs/app/components/content/examples/form/FormExampleJoi.vue index 74514c4b..ef6041bc 100644 --- a/docs/app/components/content/examples/form/FormExampleJoi.vue +++ b/docs/app/components/content/examples/form/FormExampleJoi.vue @@ -15,7 +15,7 @@ const state = reactive({ }) const toast = useToast() -async function onSubmit(event: FormSubmitEvent) { +async function onSubmit(event: FormSubmitEvent) { toast.add({ title: 'Success', description: 'The form has been submitted.', color: 'success' }) console.log(event.data) }