Skip to content

Commit 84a9a9d

Browse files
committed
fix: do not traverse VNodes when regsitering dependencies
fix #7786
1 parent 387d256 commit 84a9a9d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/core/observer/traverse.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import { _Set as Set, isObject } from '../util/index'
44
import type { SimpleSet } from '../util/index'
5+
import VNode from '../vdom/vnode'
56

67
const seenObjects = new Set()
78

@@ -18,7 +19,7 @@ export function traverse (val: any) {
1819
function _traverse (val: any, seen: SimpleSet) {
1920
let i, keys
2021
const isA = Array.isArray(val)
21-
if ((!isA && !isObject(val)) || Object.isFrozen(val)) {
22+
if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {
2223
return
2324
}
2425
if (val.__ob__) {

0 commit comments

Comments
 (0)