Skip to content

Commit fcc98d5

Browse files
committed
Revert "remove no longer necessary code"
This reverts commit 7f25f73.
1 parent 2768b0f commit fcc98d5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/platforms/web/runtime/components/transition.js

+6
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,12 @@ export default {
133133
const oldRawChild = this._vnode
134134
const oldChild: any = getRealChild(oldRawChild)
135135

136+
// mark v-show
137+
// so that the transition module can hand over the control to the directive
138+
if (child.data.directives && child.data.directives.some(d => d.name === 'show')) {
139+
child.data.show = true
140+
}
141+
136142
if (oldChild && oldChild.data && !isSameChild(child, oldChild)) {
137143
// replace old child transition data with fresh one
138144
// important for dynamic transitions!

0 commit comments

Comments
 (0)