-
-
Notifications
You must be signed in to change notification settings - Fork 481
Closed
Labels
Description
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