【发布时间】:2021-10-01 07:40:57
【问题描述】:
嗨,我的 vue 3 项目路由页面动画和过渡不起作用
<template>
<app-header />
<router-view v-slot="{ Component }" :key="$route.fullPath">
<transition name="fade" mode="out-in">
<component :is="Component" />
</transition>
</router-view>
<app-foother />
<div v-on:click="pageTop()" class="downUpArrow">
<i class="fas fa-chevron-up"></i>
</div>
</template>
我的路由器链接头组件不是我添加的路由器链接添加不起作用的转换
【问题讨论】: