We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe853a5 commit d56f115Copy full SHA for d56f115
packages/reactivity/src/computed.ts
@@ -4,11 +4,11 @@ import { isFunction, NOOP } from '@vue/shared'
4
import { ReactiveFlags, toRaw } from './reactive'
5
import { Dep } from './dep'
6
7
-declare const ComoutedRefSymbol: unique symbol
+declare const ComputedRefSymbol: unique symbol
8
9
export interface ComputedRef<T = any> extends WritableComputedRef<T> {
10
readonly value: T
11
- [ComoutedRefSymbol]: true
+ [ComputedRefSymbol]: true
12
}
13
14
export interface WritableComputedRef<T> extends Ref<T> {
0 commit comments