W.I.P EventView

This commit is contained in:
Laurent
2025-03-19 20:38:20 +01:00
parent 9cea2c3239
commit 12c092f3f3
8 changed files with 100 additions and 29 deletions

View File

@@ -4,7 +4,6 @@
import {ref, onMounted, watch} from "vue";
import { datePickerStore } from "@/stores/CalendarStore.ts";
import { Calendar } from "@/models/Calendar.ts";
import router from "@/router";
const calendar = new Calendar();
const datePicker = datePickerStore();

View File

@@ -0,0 +1,16 @@
<script setup lang="ts">
import TextBlock from "@/components/TextBlock.vue";
</script>
<template>
<TextBlock>
<slot></slot>
</TextBlock>
</template>
<style scoped>
.text-block {
border-left: solid 4px red;
}
</style>