28 lines
390 B
Vue
28 lines
390 B
Vue
|
|
<template>
|
||
|
|
<transition name="fade">
|
||
|
|
<router-view v-slot="{ Component }">
|
||
|
|
<component :is="Component" />
|
||
|
|
</router-view>
|
||
|
|
</transition>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup>
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
.fade-enter-active,
|
||
|
|
.fade-leave-active {
|
||
|
|
transition: opacity 0.5s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
.fade-enter-from,
|
||
|
|
.fade-leave-to {
|
||
|
|
opacity: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#nprogress .bar {
|
||
|
|
background: #476FFF !important;
|
||
|
|
}
|
||
|
|
</style>
|