Skip to content

Commit 668e1e6

Browse files
fix(types): allow string for watch handlers in options (#10396)
* Allow watch handler to be string as it is supported * Move string type to WatchHandler itself * Removed string type as it moved to WatchHandler
1 parent b8bd149 commit 668e1e6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

types/options.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export interface ComponentOptions<
7676
propsData?: object;
7777
computed?: Accessors<Computed>;
7878
methods?: Methods;
79-
watch?: Record<string, WatchOptionsWithHandler<any> | WatchHandler<any> | string>;
79+
watch?: Record<string, WatchOptionsWithHandler<any> | WatchHandler<any>>;
8080

8181
el?: Element | string;
8282
template?: string;
@@ -169,7 +169,7 @@ export interface ComputedOptions<T> {
169169
cache?: boolean;
170170
}
171171

172-
export type WatchHandler<T> = (val: T, oldVal: T) => void;
172+
export type WatchHandler<T> = string | ((val: T, oldVal: T) => void);
173173

174174
export interface WatchOptions {
175175
deep?: boolean;

types/test/options-test.ts

+4
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,10 @@ Vue.component('component', {
168168
this.a = val
169169
},
170170
deep: true
171+
},
172+
d: {
173+
handler: 'someMethod',
174+
immediate: true
171175
}
172176
},
173177
el: "#app",

0 commit comments

Comments
 (0)