15 lines
396 B
Vue
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>
|