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

Prevent calling composables directly in the event handler #2721

Open
Haberkamp opened this issue Mar 22, 2025 · 0 comments · May be fixed by #2722
Open

Prevent calling composables directly in the event handler #2721

Haberkamp opened this issue Mar 22, 2025 · 0 comments · May be fixed by #2722

Comments

@Haberkamp
Copy link

Please describe what the rule should do:

This rule enforces that you can't directly call a composable inside an event handler.

Calling a composable inside an event handler directly can cause issues. For example when we call
onMounted inside that composable, we'll get an error because onMounted is called outside the Vue context.

Here's an example

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:

<template>
  <button @click="useFoo">Click me!</button>
</template>

<script setup>
function useFoo() {
  onMounted() {}

  fetch('/api);
}
</script>

Additional context

To determine wether something is a composable, we check if a function starts with use. This is the standard convention for Vue.

Note: I would help to create a PR for that rule

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant