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

@@ -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>