We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a64f7f3 commit 9f665ffCopy full SHA for 9f665ff
packages/compiler-ssr/src/transforms/ssrTransformTransitionGroup.ts
@@ -116,6 +116,10 @@ export function ssrTransformTransitionGroup(
116
argName === 'moveClass' ||
117
argName === 'move-class'
118
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
123
}
124
125
0 commit comments