Skip to content

Commit c7d1065

Browse files
committed
chore(compat): do not pass false value in BVTransition
1 parent 05db323 commit c7d1065

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/transition/bv-transition.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,13 @@ export const BVTransition = /*#__PURE__*/ Vue.extend({
7070
// We always need `css` true
7171
css: true
7272
}
73+
74+
const dataCopy = { ...data }
75+
delete dataCopy.props
7376
return h(
7477
'transition',
7578
// Any transition event listeners will get merged here
76-
mergeData(data, { props: transProps }),
79+
mergeData(dataCopy, { props: transProps }),
7780
children
7881
)
7982
}

0 commit comments

Comments
 (0)