Skip to content

Commit 9f665ff

Browse files
committed
fix(compiler-ssr): filter v-bind object props in TransitionGroup SSR │
1 parent a64f7f3 commit 9f665ff

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/compiler-ssr/src/transforms/ssrTransformTransitionGroup.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ export function ssrTransformTransitionGroup(
116116
argName === 'moveClass' ||
117117
argName === 'move-class'
118118
return !shouldFilter
119+
} else if (!p.arg) {
120+
// v-bind without argument (e.g., v-bind="props") - filter out entirely
121+
// since it may contain transition-specific props that should not be rendered
122+
return false
119123
}
120124
}
121125

0 commit comments

Comments
 (0)