Skip to content

Commit

Permalink
fix(reactive): remove useless proxy logic of shallowReactive (#890)
Browse files Browse the repository at this point in the history
  • Loading branch information
theniceangel committed Jan 27, 2022
1 parent d2a065e commit 7243ffa
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/reactivity/reactive.ts
Expand Up @@ -189,7 +189,6 @@ export function shallowReactive(obj: any) {
}

const observed = observe(isArray(obj) ? [] : {})
setupAccessControl(observed)

const ob = (observed as any).__ob__

Expand Down

0 comments on commit 7243ffa

Please sign in to comment.