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
<template>
<MyComponent@myCustomEvent="() => myHandler(true)" />
</template>
// error: Event myCustomEvent in MyComponent specifies required argument `id`, which is missing from your event listener's callback function signature
Would this be something natively supporting as a rule or would you say, this has to be a custom rule? If so, do you have any tips on how to write the rule for that particular case (fetching emit information from component used in template of another component)?