From: Marvin Rudolph Date: Tue, 2 Nov 2021 19:19:39 +0000 (+0100) Subject: chore(reactivity): fix typo in types (#4889) X-Git-Tag: v3.2.22~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d56f115f71d2068f7b1ca7c0ce4c1a230c486817;p=thirdparty%2Fvuejs%2Fcore.git chore(reactivity): fix typo in types (#4889) --- diff --git a/packages/reactivity/src/computed.ts b/packages/reactivity/src/computed.ts index 11af231b4c..c7f7b05155 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 {