This commit is contained in:
2026-08-09 10:30:54 +02:00
parent 93800e8460
commit 20beea24d5
11 changed files with 325 additions and 61 deletions
+9 -2
View File
@@ -1,7 +1,14 @@
<template>
<router-view/>
<router-view />
<v-snackbar v-model="notification.visible" :timeout="5000" location="bottom right">
<div class="font-weight-bold">{{ notification.title }}</div>
<div>{{ notification.message }}</div>
</v-snackbar>
</template>
<script lang="ts" setup>
//
import {useNotificationStore} from "@/stores/notification.ts";
const notification = useNotificationStore();
</script>