We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15031b8 commit 60b1af9Copy full SHA for 60b1af9
src/platforms/web/runtime/components/transition-group.js
@@ -101,8 +101,9 @@ export default {
101
children.forEach(applyTranslation)
102
103
// force reflow to put everything in position
104
- const body: any = document.body
105
- const f: number = body.offsetHeight // eslint-disable-line
+ // assign to this to avoid being removed in tree-shaking
+ // $flow-disable-line
106
+ this._reflow = document.body.offsetHeight
107
108
children.forEach((c: VNode) => {
109
if (c.data.moved) {
0 commit comments