We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__v_skip
1 parent bccc723 commit 12d4726Copy full SHA for 12d4726
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