Files
oxspeak_server/frontend/src/App.vue
T
2026-08-09 10:30:54 +02:00

15 lines
396 B
Vue

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