bug: fix problem that page jitter when animation disabled; 🌟

修复:禁用动画时页面抖动的问题;
This commit is contained in:
iczer 2020-07-10 12:12:31 +08:00
parent 9d5c100960
commit 58caeee45c

View File

@ -1,10 +1,12 @@
<template>
<transition
:enter-active-class="disabled ? 'animate-disabled' : `animated ${enterAnimate} page-toggle-enter-active`"
:leave-active-class="disabled ? 'animate-disabled' : `animated ${leaveAnimate} page-toggle-leave-active`"
v-if="!disabled"
:enter-active-class="`animated ${enterAnimate} page-toggle-enter-active`"
:leave-active-class="`animated ${leaveAnimate} page-toggle-leave-active`"
>
<slot></slot>
</transition>
<div v-else><slot></slot></div>
</template>
<script>