Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rule suggestion: vue/prefer-single-payload-in-event #2005

Open
FloEdelmann opened this issue Oct 6, 2022 · 0 comments
Open

Rule suggestion: vue/prefer-single-payload-in-event #2005

FloEdelmann opened this issue Oct 6, 2022 · 0 comments

Comments

@FloEdelmann
Copy link
Member

FloEdelmann commented Oct 6, 2022

Please describe what the rule should do:
When emitting an event, one can pass an event payload. This can consist of multiple parameters. However, when using the always style in the event handler, one can only receive the first event payload parameter.

<my-button @my-event="myHandler($event)" />

See also the vue/v-on-function-call rule and #2001 (comment).

What category should the rule belong to?
[ ] Enforces code style (layout)
[x] Warns about a potential error (problem)
[ ] Suggests an alternate way of doing something (suggestion)
[ ] Other (please specify:)

Provide 2-3 code examples that this rule should warn about:

// BAD:
this.$emit('my-event', foo, bar)
emit('my-event', foo, bar)
defineEmits({ 'my-event': (foo, bar) => true })
defineEmits({ 'my-event': (foo: string, bar: string) => true })
defineEmits<{ (e: 'my-event', foo: string, bar: string): void }>()
{ emits: { 'my-event': (foo, bar) => true } }
{ emits: { 'my-event': (foo: string, bar: string) => true } }

// GOOD:
this.$emit('my-event', foo)
emit('my-event', foo)
defineEmits(['my-event'])
defineEmits({ 'my-event': null })
defineEmits({ 'my-event': (foo) => true })
defineEmits({ 'my-event': (foo: string) => true })
defineEmits<{ (e: 'my-event', foo: string): void }>()
{ emits: ['my-event'] }
{ emits: { 'my-event': null }
{ emits: { 'my-event': (foo) => true } }
{ emits: { 'my-event': (foo: string) => true } }
@FloEdelmann FloEdelmann changed the title Rule suggestion: vue/prefer-single-event-payload Rule suggestion: vue/prefer-single-payload-in-event Jun 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant