diff --git a/src/platforms/web/runtime/components/transition-group.js b/src/platforms/web/runtime/components/transition-group.js index b9a0f34e22c..7f0460629c3 100644 --- a/src/platforms/web/runtime/components/transition-group.js +++ b/src/platforms/web/runtime/components/transition-group.js @@ -90,7 +90,7 @@ export default { updated () { const children = this.prevChildren const moveClass = this.moveClass || ((this.name || 'v') + '-move') - if (!children.length || !this.hasMove(children[0].elm, moveClass)) { + if (!children.length || children.any(child => this.hasMove(child.elm, moveClass))) { return }