feat(dashboard): handle API errors and enhance translations

This commit is contained in:
2026-08-02 16:21:23 +02:00
parent 029c29afd1
commit fa66b416f3
16 changed files with 354 additions and 16 deletions
+11
View File
@@ -0,0 +1,11 @@
<script setup lang="ts">
defineProps<{
message: string;
}>();
</script>
<template>
<div class="rounded-xl bg-red-300 p-2 font-semibold text-red-900 shadow-md">
{{ message }}
</div>
</template>