File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ export interface ComponentOptions<
76
76
propsData ?: object ;
77
77
computed ?: Accessors < Computed > ;
78
78
methods ?: Methods ;
79
- watch ?: Record < string , WatchOptionsWithHandler < any > | WatchHandler < any > | string > ;
79
+ watch ?: Record < string , WatchOptionsWithHandler < any > | WatchHandler < any > > ;
80
80
81
81
el ?: Element | string ;
82
82
template ?: string ;
@@ -169,7 +169,7 @@ export interface ComputedOptions<T> {
169
169
cache ?: boolean ;
170
170
}
171
171
172
- export type WatchHandler < T > = ( val : T , oldVal : T ) => void ;
172
+ export type WatchHandler < T > = string | ( ( val : T , oldVal : T ) => void ) ;
173
173
174
174
export interface WatchOptions {
175
175
deep ?: boolean ;
Original file line number Diff line number Diff line change @@ -168,6 +168,10 @@ Vue.component('component', {
168
168
this . a = val
169
169
} ,
170
170
deep : true
171
+ } ,
172
+ d : {
173
+ handler : 'someMethod' ,
174
+ immediate : true
171
175
}
172
176
} ,
173
177
el : "#app" ,
You can’t perform that action at this time.
0 commit comments