Files
Mangarr/assets/vue/app/App.vue
ext.jeremy.guillot@maxicoffee.domains 3170a7c60e feat: analyse import + all tests fixed
2025-10-15 16:14:15 +02:00

21 lines
327 B
Vue

<template>
<router-view></router-view>
<NotificationToast />
</template>
<script setup>
import NotificationToast from './shared/components/ui/NotificationToast.vue';
</script>
<style>
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.2s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
</style>