feat(reactivity): proxyRefs method and ShallowUnwrapRefs type (#1682)

* feat(reactivity): `proxyRefs` method and `ShallowUnwrapRefs` type

BREAKING CHANGE: template auto ref unwrapping are now applied shallowly,
i.e. only at the root level. See https://github.com/vuejs/vue-next/pull/1682 for
more details.
This commit is contained in:
Evan You
2020-07-28 16:30:56 -04:00
committed by GitHub
parent de62cc040c
commit aa06b1034d
6 changed files with 39 additions and 10 deletions

View File

@@ -146,7 +146,7 @@ describe('with object props', () => {
// assert setup context unwrapping
expectType<number>(this.c)
expectType<string>(this.d.e)
expectType<string>(this.d.e.value)
expectType<GT>(this.f.g)
// setup context properties should be mutable