diff --git a/packages/runtime-core/src/components/BaseTransition.ts b/packages/runtime-core/src/components/BaseTransition.ts index 5e5e216d34a..4b654812ead 100644 --- a/packages/runtime-core/src/components/BaseTransition.ts +++ b/packages/runtime-core/src/components/BaseTransition.ts @@ -238,7 +238,8 @@ const BaseTransitionImpl: ComponentOptions = { // return placeholder node and queue update when leave finishes leavingHooks.afterLeave = () => { state.isLeaving = false - instance.update() + // #6835 + instance.update.active !== false && instance.update() } return emptyPlaceholder(child) } else if (mode === 'in-out' && innerChild.type !== Comment) {