diff --git a/packages/reactivity/src/ref.ts b/packages/reactivity/src/ref.ts index 93eb4fa8..d37b6726 100644 --- a/packages/reactivity/src/ref.ts +++ b/packages/reactivity/src/ref.ts @@ -276,7 +276,7 @@ export type UnwrapRefSimple = T extends | RefUnwrapBailTypes[keyof RefUnwrapBailTypes] ? T : T extends Array - ? { [K in keyof T]: UnwrapRefSimple } + ? Array> : T extends object & { [ShallowReactiveMarker]?: never } ? { [P in keyof T]: P extends symbol ? T[P] : UnwrapRef