From d988b37e8d4f04e373d1114a5672f1785e8641f0 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sat, 23 Apr 2022 14:19:39 -0500 Subject: [PATCH] Clean up typing --- src/util/vue.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/vue.tsx b/src/util/vue.tsx index 64f06f7..e8b51ca 100644 --- a/src/util/vue.tsx +++ b/src/util/vue.tsx @@ -169,7 +169,7 @@ export function computeComponent( watchEffect(() => { comp.value = coerceComponent(unwrapRef(component), defaultWrapper); }); - return comp as ShallowRef; + return comp as ShallowRef; } export function computeOptionalComponent( component: Ref | undefined>,