Skip to content

Commit 60b1af9

Browse files
jkzingyyx990803
authored andcommitted
fix(transition-group): work around rollup tree shaking (#6796)
fix #6792
1 parent 15031b8 commit 60b1af9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/platforms/web/runtime/components/transition-group.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,9 @@ export default {
101101
children.forEach(applyTranslation)
102102

103103
// force reflow to put everything in position
104-
const body: any = document.body
105-
const f: number = body.offsetHeight // eslint-disable-line
104+
// assign to this to avoid being removed in tree-shaking
105+
// $flow-disable-line
106+
this._reflow = document.body.offsetHeight
106107

107108
children.forEach((c: VNode) => {
108109
if (c.data.moved) {

0 commit comments

Comments
 (0)