Skip to content

Commit

Permalink
test: update event test case for improved functional events typing in…
Browse files Browse the repository at this point in the history
… 3.3.10
  • Loading branch information
yyx990803 committed Dec 4, 2023
1 parent 6f85019 commit ca2b19c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-workspace/tsc/vue3/events/main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<C1 @foo-bar="exactType($event, {} as number)" @bar-baz="exactType($event, {} as number)" />
<C2 @foo-bar="exactType($event, {} as number)" />
<C3 @foo-bar="exactType($event, {} as any)" />
<C3 @foo-bar="exactType($event, {} as number)" />
<C4 value="1" @foo-bar="exactType($event, {} as any)" />
<C4 :value="1" @foo-bar="exactType($event, {} as any)" />

Expand Down

0 comments on commit ca2b19c

Please sign in to comment.