We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 387d256 commit 84a9a9dCopy full SHA for 84a9a9d
src/core/observer/traverse.js
@@ -2,6 +2,7 @@
2
3
import { _Set as Set, isObject } from '../util/index'
4
import type { SimpleSet } from '../util/index'
5
+import VNode from '../vdom/vnode'
6
7
const seenObjects = new Set()
8
@@ -18,7 +19,7 @@ export function traverse (val: any) {
18
19
function _traverse (val: any, seen: SimpleSet) {
20
let i, keys
21
const isA = Array.isArray(val)
- if ((!isA && !isObject(val)) || Object.isFrozen(val)) {
22
+ if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {
23
return
24
}
25
if (val.__ob__) {
0 commit comments