We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9e8642 commit ecf051bCopy full SHA for ecf051b
packages/reactivity/src/computed.ts
@@ -16,7 +16,7 @@ export interface WritableComputedRef<T> extends Ref<T> {
16
}
17
18
export type ComputedGetter<T> = () => T
19
-export type ComputedGetterWithVModel<T> = (vm: any) => T
+export type ComputedGetterWithVModel<T> = (...args: any[]) => T
20
export type ComputedSetter<T> = (v: T) => void
21
22
export interface WritableComputedOptions<T> {
0 commit comments