I encountered an issue with Vue3, TypeScript, and Vue CLI where I received the following error message:
Module '"c:/Users/USER/Documents/top-secret-project/src/components/Features/Features.vue"' has no default export.
This error occurred when attempting to import a component from a file.
I am unsure of why this particular component is now not functioning properly.
Here is the content of Features.vue
<script lang="ts">
import Feature from "./Feature.vue";
</script>
<template>
<Feature />
</template>