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 e1626b3 commit ac22224Copy full SHA for ac22224
packages/runtime-vapor/src/component.ts
@@ -411,9 +411,10 @@ export function setupComponent(
411
)
412
if (root) {
413
renderEffect(() => {
414
- const attrs = isFunction(component)
415
- ? getFunctionalFallthrough(instance.attrs)
416
- : instance.attrs
+ const attrs =
+ isFunction(component) && component.displayName !== 'VaporTransition'
+ ? getFunctionalFallthrough(instance.attrs)
417
+ : instance.attrs
418
if (attrs) applyFallthroughProps(root, attrs)
419
})
420
} else if (
0 commit comments