refactor: adjust logic branches

This commit is contained in:
Evan You 2021-03-01 15:45:55 -05:00
parent 7562e72c2b
commit 69304cf166

View File

@ -316,15 +316,14 @@ export const setRef = (
if (!vnode) { if (!vnode) {
// means unmount // means unmount
value = null value = null
} else { } else if (isAsyncWrapper(vnode)) {
// when mounting async components, nothing needs to be done, // when mounting async components, nothing needs to be done,
// because the template ref is forwarded to inner component // because the template ref is forwarded to inner component
if (isAsyncWrapper(vnode)) return return
if (vnode.shapeFlag & ShapeFlags.STATEFUL_COMPONENT) { } else if (vnode.shapeFlag & ShapeFlags.STATEFUL_COMPONENT) {
value = vnode.component!.exposed || vnode.component!.proxy value = vnode.component!.exposed || vnode.component!.proxy
} else { } else {
value = vnode.el value = vnode.el
}
} }
const { i: owner, r: ref } = rawRef const { i: owner, r: ref } = rawRef