21 lines
327 B
Vue
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>
|