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 05db323 commit c7d1065Copy full SHA for c7d1065
src/components/transition/bv-transition.js
@@ -70,10 +70,13 @@ export const BVTransition = /*#__PURE__*/ Vue.extend({
70
// We always need `css` true
71
css: true
72
}
73
+
74
+ const dataCopy = { ...data }
75
+ delete dataCopy.props
76
return h(
77
'transition',
78
// Any transition event listeners will get merged here
- mergeData(data, { props: transProps }),
79
+ mergeData(dataCopy, { props: transProps }),
80
children
81
)
82
0 commit comments