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) }