现在的效果是这样的,我想要页面切换时候有淡入淡出的效果,是哪里写错了吗?
上这个组件的代码:
<template>
<div id="wrapper">
<div class="nav">
<router-link to="/stafflist">StaffList</router-link> |
<router-link to="/editpassword">EditPassword</router-link>
</div>
<transition
mode="out-in"
enter-active-class="animate__animated animate__fadeIn"
leave-active-class="animate__animated animate__fadeOut"
>
<router-view></router-view>
</transition>
</div>
</template>
<script>
export default {
name: 'Anime'
}
</script>
<style lang="scss" scoped>
h1 {
background: #000;
color: #fff;
}
</style>
已在main.js中引入a
css在哪里呢?