是否有必要将组件包装在本身具有@animation 的元素(如 div)中,以便为该组件的销毁设置动画?到目前为止,这是我尝试过的:stackblitz
基本上,我想要这个:
<my-component @anim *ngIf="show" (click)="toggleShow()"></my-component>
而不是这个:
<div @anim *ngIf="show">
<my-component (click)="toggleShow()"></my-component>
</div>