holy ravioli

This commit is contained in:
Laurent
2025-03-20 17:36:46 +01:00
parent fd7bdace3b
commit 609ef2b705
28 changed files with 245 additions and 93 deletions

View File

@@ -1,6 +1,6 @@
<script setup lang="ts">
import ArrowRight from "@/assets/arrow-right.svg"
import ArrowLeft from "@/assets/arrow-left.svg";
import ArrowRight from "@/assets/svg/arrow-right.svg"
import ArrowLeft from "@/assets/svg/arrow-left.svg";
import {ref, onMounted, watch} from "vue";
import { datePickerStore } from "@/stores/CalendarStore.ts";
import { Calendar } from "@/models/Calendar.ts";

View File

@@ -10,7 +10,6 @@ const props = defineProps({
}
});
// Method to handle the update
const updateValue = (event : any) => {
emit('update:value', event.target.value);
};