You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like 8628f3f introduced a regression in our projects.
We're using vee-validate, which offers a Form component, with a submit event. You can listen to this submit event to call a method of the component with the submitted values.
With volar v0.25.25, using a simple component like:
src/App.vue:2:27 - error TS2345: Argument of type 'undefined' is not assignable to parameter of type '{ login: string; }'.
2 <Form @submit="register($event)">
@johnsoncodehk Awesome, thanks! I manually patched my vscode-vue-languageservice package with your fix and I confirm it fixes the issue in our project 👌
It looks like 8628f3f introduced a regression in our projects.
We're using vee-validate, which offers a
Form
component, with asubmit
event. You can listen to this submit event to call a method of the component with the submitted values.With volar v0.25.25, using a simple component like:
Makes
vue-tsc
throw:I put together a small repro here: cexbrayat/vue-v313#1
The text was updated successfully, but these errors were encountered: