We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5a0073 commit b8ad6eaCopy full SHA for b8ad6ea
src/platforms/web/runtime/components/transition-group.js
@@ -90,7 +90,7 @@ export default {
90
updated () {
91
const children = this.prevChildren
92
const moveClass = this.moveClass || ((this.name || 'v') + '-move')
93
- if (!children.length || !this.hasMove(children[0].elm, moveClass)) {
+ if (!children.length || !children.every(c => this.hasMove(c.elm, moveClass))) {
94
return
95
}
96
0 commit comments