Skip to content

Commit 9b4dbba

Browse files
committed
fix(transition): should trigger transition hooks for v-show in ie9
fix #5525
1 parent 082fc39 commit 9b4dbba

File tree

1 file changed

+2
-3
lines changed
  • src/platforms/web/runtime/directives

1 file changed

+2
-3
lines changed

src/platforms/web/runtime/directives/show.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/* @flow */
22

3-
import { isIE9 } from 'core/util/env'
43
import { enter, leave } from '../modules/transition'
54

65
// recursively search for possible transition defined inside the component root
@@ -16,7 +15,7 @@ export default {
1615
const transition = vnode.data && vnode.data.transition
1716
const originalDisplay = el.__vOriginalDisplay =
1817
el.style.display === 'none' ? '' : el.style.display
19-
if (value && transition && !isIE9) {
18+
if (value && transition) {
2019
vnode.data.show = true
2120
enter(vnode, () => {
2221
el.style.display = originalDisplay
@@ -31,7 +30,7 @@ export default {
3130
if (value === oldValue) return
3231
vnode = locateNode(vnode)
3332
const transition = vnode.data && vnode.data.transition
34-
if (transition && !isIE9) {
33+
if (transition) {
3534
vnode.data.show = true
3635
if (value) {
3736
enter(vnode, () => {

0 commit comments

Comments
 (0)