Whenever I try to export components within
<script setup lang="ts">
and then use them in <template lang="pug">
, an error is thrown stating that the component is defined but never used. Here's an example:
<template lang="pug">
div
// Even when using kebab-case, like hello-world, the same issue occurs
HelloWorld
</template>
<script setup lang="ts">
import HelloWorld from'@/components/HelloWorld.vue';
</script>
The error message displayed is: Error: 'HelloWorld' is defined but never used