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
<script setup> import A from "./A.vue"; import B from "./B.vue" </script> <template> <div> <A /> <B /> </div> </template>
format to
<script setup> import A from "./A.vue"; import B from "./B.vue"; /* PartiallyEnd: #3632/scriptSetup.vue */ import B from "./B.vue"; </script> <template> <div> <A /> <B /> </div> </template>
prettier: v3.4.1 prettier-plugin-organize-imports: v4.1.0 vue-tsc: v2.1.10
The text was updated successfully, but these errors were encountered:
@johnsoncodehk I guess this would be a bug in vue-tsc?
vue-tsc
Sorry, something went wrong.
It's logged there as vuejs/language-tools#5110
Notably, the OP here says this happens with vue-tsc 2.1.10, but I can only repro with vue-tsc 2.2
No branches or pull requests
format to
prettier: v3.4.1
prettier-plugin-organize-imports: v4.1.0
vue-tsc: v2.1.10
The text was updated successfully, but these errors were encountered: