Skip to content

Commit fafbea7

Browse files
committed
fix: add dep to isNonTrackableKeys
1 parent 22f359b commit fafbea7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/reactivity/src/baseHandlers.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ import {
2525
import { isRef } from './ref'
2626
import { warn } from './warning'
2727

28-
const isNonTrackableKeys = /*@__PURE__*/ makeMap(`__proto__,__v_isRef,__isVue`)
28+
const isNonTrackableKeys = /*@__PURE__*/ makeMap(
29+
`__proto__,__v_isRef,__isVue,dep`,
30+
)
2931

3032
const builtInSymbols = new Set(
3133
/*@__PURE__*/

0 commit comments

Comments
 (0)