We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
vue/component-tags-order
<script>
<script setup>
What rule do you want to change? vue/component-tags-order
Does this change cause the rule to produce more or fewer warnings? More.
How will the change be implemented? (New option, new default behavior, etc.)? New configuration option.
Possibly the new default?
Example
<script setup> // ... </script> <script> // ... </script>
What does the rule currently do for this code? Nothing.
What will the rule do after it's changed?
Move <script setup> below <script>.
<script> // ... </script> <script setup> // ... </script>
The text was updated successfully, but these errors were encountered:
Fix vuejs#1819: Enforce order between script and script setup
5eafa3b
366977e
Fix #1819: Enforce order between script and script setup (#1825)
926064c
* Fix #1819: Enforce order between script and script setup * update defaults to match documentation * Use CSS selector syntax * remove incorrect documentation of default behavior for script setup * Fix bug with multiple not pseudo-selectors * revert component tags order docs * update docs * Update error message * update headers * update docs more better * Update tests/lib/rules/component-tags-order.js Co-authored-by: Yosuke Ota <[email protected]> * Update tests/lib/rules/component-tags-order.js Co-authored-by: Yosuke Ota <[email protected]> * Update tests/lib/rules/component-tags-order.js Co-authored-by: Yosuke Ota <[email protected]> * Update tests/lib/rules/component-tags-order.js Co-authored-by: Yosuke Ota <[email protected]> * Update docs/rules/component-tags-order.md Co-authored-by: Yosuke Ota <[email protected]> * don't move the message block Co-authored-by: Yosuke Ota <[email protected]>
Successfully merging a pull request may close this issue.
What rule do you want to change?
vue/component-tags-order
Does this change cause the rule to produce more or fewer warnings?
More.
How will the change be implemented? (New option, new default behavior, etc.)?
New configuration option.
Possibly the new default?
Example
What does the rule currently do for this code?
Nothing.
What will the rule do after it's changed?
Move
<script setup>
below<script>
.The text was updated successfully, but these errors were encountered: