We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
yyx990803
Learn more about funding links in repositories.
Report abuse
__v_skip
1 parent 2d78539 commit d637bd6Copy full SHA for d637bd6
packages/reactivity/src/baseHandlers.ts
@@ -53,6 +53,8 @@ class BaseReactiveHandler implements ProxyHandler<Target> {
53
) {}
54
55
get(target: Target, key: string | symbol, receiver: object): any {
56
+ if (key === ReactiveFlags.SKIP) return target[ReactiveFlags.SKIP]
57
+
58
const isReadonly = this._isReadonly,
59
isShallow = this._isShallow
60
if (key === ReactiveFlags.IS_REACTIVE) {
0 commit comments