types(reactivity): ref type should not expose _isRef

This commit is contained in:
Evan You
2019-11-08 13:29:43 -05:00
parent 68ad302714
commit 61d8941692
2 changed files with 18 additions and 8 deletions

View File

@@ -69,7 +69,7 @@ export function computed<T>(
set value(newValue: T) {
setter(newValue)
}
}
} as any
}
function trackChildRun(childRunner: ReactiveEffect) {