From 2f92dbfa9988fa5b7d35e0af260cd5efe6b18668 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Mon, 21 Oct 2024 15:37:41 +0300 Subject: [PATCH] Update FormDoc.vue --- apps/showcase/doc/inputtext/FormDoc.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/showcase/doc/inputtext/FormDoc.vue b/apps/showcase/doc/inputtext/FormDoc.vue index dc1a422f6..102bf10c8 100644 --- a/apps/showcase/doc/inputtext/FormDoc.vue +++ b/apps/showcase/doc/inputtext/FormDoc.vue @@ -86,9 +86,7 @@ const value = ref(null); this.resolver = zodResolver(this.schema); }, methods: { - onFormSubmit({ valid, values, states }) { - console.log(values, states); - + onFormSubmit({ valid }) { if (valid) { this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 }); }