Files
letsmeet/front/src/components/ErrorBlock.vue
2025-03-19 20:38:20 +01:00

17 lines
230 B
Vue

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