vue 3.0 router 跳转动画

<router-view class="router-view" v-slot="{ Component }">
    <transition name="fade" enter-active-class="animate__animated animate__fadeIn">
        <component :is="Component" />
    </transition>
</router-view>
原文地址:https://www.cnblogs.com/chengxiang123/p/14784972.html