Files
InsightRadar/frontend/src/App.vue
T
2026-03-13 23:48:49 +08:00

21 lines
443 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!-- 根组件路由出口带页面切换淡入淡出动画 -->
<template>
<RouterView v-slot="{ Component }">
<transition name="page-fade" mode="out-in">
<component :is="Component" />
</transition>
</RouterView>
</template>
<style>
.page-fade-enter-active,
.page-fade-leave-active {
transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.page-fade-enter-from,
.page-fade-leave-to {
opacity: 0;
}
</style>