Skip to content

Commit bc5b92a

Browse files
authored
fix(types): fix error with options watch (#12779)
fix #12780
1 parent fb13930 commit bc5b92a

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

types/options.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export interface ComponentOptions<
181181
propsData?: object
182182
computed?: Accessors<Computed>
183183
methods?: Methods
184-
watch?: Record<string, WatchOptionsWithHandler<any> | WatchHandler<any>>
184+
watch?: Record<string, WatchOptionsWithHandler<any> | WatchHandler<any> | Array<WatchOptionsWithHandler<any> | WatchHandler<any>>>
185185

186186
setup?: (
187187
this: void,

types/test/options-test.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,14 @@ Vue.component('component', {
172172
d: {
173173
handler: 'someMethod',
174174
immediate: true
175-
}
175+
},
176+
e: [
177+
'handle1',
178+
function handle2 (val, oldVal) {},
179+
{
180+
handler: function handle3 (val, oldVal) {},
181+
}
182+
],
176183
},
177184
el: '#app',
178185
template: '<div>{{ message }}</div>',

0 commit comments

Comments
 (0)