Skip to content

Commit b3cc0ef

Browse files
committed
fix flow
1 parent 31839a1 commit b3cc0ef

File tree

1 file changed

+1
-1
lines changed
  • src/platforms/web/runtime/modules

1 file changed

+1
-1
lines changed

src/platforms/web/runtime/modules/style.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function updateStyle (oldVnode: VNodeWithData, vnode: VNodeWithData) {
2727
let cur, name
2828
const elm: any = vnode.elm
2929
const oldStyle: any = oldVnode.data.style || {}
30-
let style = vnode.data.style || {}
30+
let style: any = vnode.data.style || {}
3131
const needClone = style.__ob__
3232

3333
// handle array syntax

0 commit comments

Comments
 (0)