mirror of
https://github.com/gotson/komga.git
synced 2025-12-06 08:32:25 +01:00
17 lines
306 B
Vue
17 lines
306 B
Vue
<template>
|
|
<v-snackbar-queue
|
|
v-model="messagesStore.messages"
|
|
timer
|
|
close-on-content-click
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useMessagesStore } from '@/stores/messages'
|
|
|
|
const messagesStore = useMessagesStore()
|
|
</script>
|
|
|
|
<script lang="ts"></script>
|
|
|
|
<style scoped></style>
|