Auto Imports vs. components/AppHeader.vue (?)
Hello guys, I am blocked with setting a new app due to the auto imports issue.
In fact everything seems odd with Nuxt since yesterday night. Have you seen such err already?

10 Replies
Hi @Mike. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
I understand you're having issues with auto imports in your Nuxt application, particularly with components like AppHeader.vue. Let me help clarify how auto imports work in Nuxt and what might be causing your issue.
Nuxt automatically imports components from your
components/
directory, so files like components/AppHeader.vue
should be available in your templates without explicit imports. This is part of Nuxt's "convention over configuration" approach.
For example, if you have this structure:
You can use these components directly in your templates:
Without needing to import them explicitly Components Directory Structure.
If you're experiencing issues with auto imports, here are some potential causes:
1. Component naming issues: Component names are based on their path and filename. For nested components, duplicate segments are removed. For example, components/base/foo/Button.vue
would be available as <BaseFooButton />
Components Directory Structure.
2. Configuration issues: Check if you've modified the auto-import settings in your nuxt.config.ts
file. You might have disabled auto-imports with settings like:
Auto-imports Documentation
3. Dynamic components: If you're trying to use components dynamically with :is
, you'll need to use resolveComponent
or import them explicitly Components Documentation.
If you're still having issues, you can always use explicit imports:
Direct Imports Documentation
Without more specific details about the error you're encountering, it's difficult to pinpoint the exact cause. Could you share the specific error message or behavior you're experiencing?
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@657584859052638218> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
The solution is manually import to my layouts/default.vue - but why auto imports are not working ?

Probably don’t. Seems a bit sus 😂
@Mike Would you be able to provide more information, such as the
package.json
, nuxt.config.ts
, and so on?Hi Hugo, yup let me pull that out.
My app.vue is at the root (I have seen your template has /app/app/vue dir organisation) this btw did not work neither, got err that app.vue cant be found.
@Mike Ok so it's super strange because I don't necessarily see a problem at 1st sight, would it be possible to maybe give me a CodeSandebox or Stackblitz style reproduction or even a repo to investigate a bit more?
@Mike typo in your components folder
You see it here
componenets
@TheAlexLichter @HugoRCD thanks guys, proud to be a human 😆