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 {