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
After formatting a vue file, namespaced components are replaced with class names. I think emmet is being ran as part of the formatting process
Before
<template> <Controls.Button type="link">Open Editor</Controls.Button> </template> <script lang="ts" setup> import Controls from "~/components/Controls" </script>
After
<template> <Controls class="Button" type="link">Open Editor</Controls> </template> <script lang="ts" setup> import Controls from "~/components/Controls" </script>
Related to #372
The text was updated successfully, but these errors were encountered:
This is issue of https://github.com/Prettyhtml/prettyhtml, you can consider to contribute a PR to prettyhtml or move to prettier.
Sorry, something went wrong.
Thanks for the quick response and that fixed the issue!
prettyhtml
vscode-html-languageservice
No branches or pull requests
After formatting a vue file, namespaced components are replaced with class names. I think emmet is being ran as part of the formatting process
Before
After
Related to #372
The text was updated successfully, but these errors were encountered: