From d56f115f71d2068f7b1ca7c0ce4c1a230c486817 Mon Sep 17 00:00:00 2001 From: Marvin Rudolph Date: Tue, 2 Nov 2021 20:19:39 +0100 Subject: [PATCH] chore(reactivity): fix typo in types (#4889) --- packages/reactivity/src/computed.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/reactivity/src/computed.ts b/packages/reactivity/src/computed.ts index 11af231b4cd..c7f7b051554 100644 --- a/packages/reactivity/src/computed.ts +++ b/packages/reactivity/src/computed.ts @@ -4,11 +4,11 @@ import { isFunction, NOOP } from '@vue/shared' import { ReactiveFlags, toRaw } from './reactive' import { Dep } from './dep' -declare const ComoutedRefSymbol: unique symbol +declare const ComputedRefSymbol: unique symbol export interface ComputedRef extends WritableComputedRef { readonly value: T - [ComoutedRefSymbol]: true + [ComputedRefSymbol]: true } export interface WritableComputedRef extends Ref {