From 782429b9c2359ba6310acac4257958fec35dd78c Mon Sep 17 00:00:00 2001 From: Sr-Iury Date: Wed, 23 Oct 2024 13:21:12 -0300 Subject: [PATCH] feat/fix: a Calendar model was defined with color, start and end properties, using ref to manage the state. The v-model in form fields has been updated to use model properties, allowing data to be bound directly to the calendar object. This simplifies the manipulation and storage of form data. :sparkles: --- components/Section/Calendario/Forms/Form1.vue | 1 - components/Section/Calendario/Forms/Form3.vue | 66 ++++++++++--------- 2 files changed, 36 insertions(+), 31 deletions(-) diff --git a/components/Section/Calendario/Forms/Form1.vue b/components/Section/Calendario/Forms/Form1.vue index 8e451076..a9a161fe 100644 --- a/components/Section/Calendario/Forms/Form1.vue +++ b/components/Section/Calendario/Forms/Form1.vue @@ -67,7 +67,6 @@ const $emit = defineEmits(['close', 'next']); /> - diff --git a/components/Section/Calendario/Forms/Form3.vue b/components/Section/Calendario/Forms/Form3.vue index 7fbfe47f..e0c58efc 100644 --- a/components/Section/Calendario/Forms/Form3.vue +++ b/components/Section/Calendario/Forms/Form3.vue @@ -1,7 +1,17 @@