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
{{ message }}
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
This used to work in v8.3.0, but is now broken in v8.4.1.
// Upload.vue
@Emit("onUploadSuccess")publiconUploadSuccess(fileName: string,response?: any){}privatelogic(){this.onUploadSuccess("HelloWorld.xlsx",response);}// SomeComponent.vue<Upload @onUploadSuccess="onUploadSuccess"/>privateonUploadSuccess(fileName: string,response: any){// ... It breaks here. The arguments are now wrapped in an array instead.}
The text was updated successfully, but these errors were encountered:
SaphuA
changed the title
Breaking change for Emit
Breaking change for Emit between v8.3.0 and v8.4.1
Apr 15, 2020
This used to work in v8.3.0, but is now broken in v8.4.1.
The text was updated successfully, but these errors were encountered: