We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2768b0f commit fcc98d5Copy full SHA for fcc98d5
src/platforms/web/runtime/components/transition.js
@@ -133,6 +133,12 @@ export default {
133
const oldRawChild = this._vnode
134
const oldChild: any = getRealChild(oldRawChild)
135
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
+
142
if (oldChild && oldChild.data && !isSameChild(child, oldChild)) {
143
// replace old child transition data with fresh one
144
// important for dynamic transitions!
0 commit comments