vue transition组件在页面切换时候animate.css效果不起作用
现在的效果是这样的,我想要页面切换时候有淡入淡出的效果,是哪里写错了吗?
上这个组件的代码:
<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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
css在哪里呢?