W.I.P EventView
This commit is contained in:
@@ -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();
|
||||
|
||||
16
front/src/components/ErrorBlock.vue
Normal file
16
front/src/components/ErrorBlock.vue
Normal 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>
|
||||
Reference in New Issue
Block a user