Skip to content
New issue

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

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

Already on GitHub? # to your account

Enforcing props destructuring #2688

Open
Ericlm opened this issue Feb 18, 2025 · 1 comment
Open

Enforcing props destructuring #2688

Ericlm opened this issue Feb 18, 2025 · 1 comment

Comments

@Ericlm
Copy link
Contributor

Ericlm commented Feb 18, 2025

Please describe what the rule should do:
The role of this rule would be to suggest props destructuring. It could also warns on its usage if necessary.

What category should the rule belong to?

[X] Enforces code style (layout)
[ ] 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:

// vue/prefer-props-destructuring

const props = defineProps<>({...}) // 🚨

const {...} = defineProps<>({...}) // 👍

Additional context

@markbrockhoff
Copy link

I agree that a rule to enforce a default style for declaring props (especially with defaults) should be provided. At the moment there are two ways for defining default values on props:

const { foo = "bar" } = defineProps<{ foo?: string }>(); // Destructuring with default assignment

const props = withDefaults(defineProps<{ foo?: string }>(), { foo: "bar" }); // Wrapping defineProps with withDefaults

I'd suggest creating a configurable rule allowing the project to decide which style to use for concistency. So either destructuring should be prefered or the opposite, where props should not be destructured and withDefaults be used.

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

No branches or pull requests

2 participants