mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
bug: fix problem that page jitter when animation disabled; 🌟
修复:禁用动画时页面抖动的问题;
This commit is contained in:
parent
9d5c100960
commit
58caeee45c
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user