Banner
Home / Blog / Understanding the Directory structure in Nuxt 3
Understanding the Directory structure in Nuxt 3

Understanding the Directory structure in Nuxt 3

Charles Allotey
Charles Allotey
October 26th 2022

The file structure of a project is important for ensuring good code organization and for making maintenance and debugging easier. In this article, we’ll learn about Nuxt 3 conventions for structuring your next project’s files.

Why does the Nuxt 3 Directory Structure matter?

Unfortunately, in our Vue.js applications, folder structuring can be a huge mess. Messy apps usually start out having a poor folder structure. But one thing I am always proud of with Nuxt 3 is that its directory structure is carefully planned out and implemented.

Let us take a look at some of its benefits;

  • Saves team members time finding the items they need, sometimes at short notice
  • Reduces the risk of people using the wrong file
  • Contributes to an overall good Nuxt project
  • Encourages team to think about where they place their files rather than using the folder structure as a digital dumping ground
  • Makes your overall project easier to manage and more sustainable
  • Supports auto-imports to help devs ship their codes faster.

Let’s jump right into the directory structure in Nuxt 3.

.nuxt

This folder contains everything needed to generate your vue application and is required that you do not make changes to any file in this directory.

.output

.output folder holds all build files when building your Nuxt application to production (nuxt build). It is also required that you do not touch files in this directory when deploying your application to production.

assets

The assets folder holds all website’s assets the build tools will process. Usually your stylesheets, fonts and images that are not going to be served by the server can be placed in this folder.

components

Components is one folder we are all familiar with. It holds all our Vue components to be reused in our pages or other components. Nuxt 3 auto imports all our components created in this folder so we don’t have to manually import them before using them.

//~/components/Header.vue

<template>
    <div>
        <h1>This is my header Component</h1>
    </div>
</template>
//~app.vue

<template>
    <div>
        <Header />
    </div>
</template>

We can further nest components in sub directories and Nuxt 3 is still able to auto import our nested component by adding the subfolder name to our component name.

~Components
-|Button
---|Primary.vue
//~app.vue

<template>
    <div>
        <ButtonHeader />
    </div>
</template>

Composables

Composables are functions that leverage Vue.js composition API to create reusable stateful logic. Composables help in preventing repetition in writing functions that apply in multiple components. Just like components, Nuxt 3 auto imports composables created in this folder.

//~composables/useHello.js

export const useHello = () => { 
 return useState('hello', () => 'Hello world')
}

Now we can call our composables in our .js, .ts or .vue files with having to import them manually.

//~app.vue

<template>
    <div>
        <p>{{ hello }}</p>
    </div>
</template>

<script>
const hello = useHello()
</script>

For performance, Nuxt by default auto imports composables created in the top level of the composable directory.

~composables
-|useHello.js (auto imported)
-|usecount.js (auto imported)
-|Validation
---|useEmailvalidation.js (not auto imported)

You can however configure Nuxt to auto import composables in subdirectories .

export default defineNuxtConfig({
  imports: {
    dirs: [
      // Scan top-level modules
      'composables',
      // ... or scan modules nested one level deep with a specific name and file extension
      'composables/*/index.{ts,js,mjs,mts}',
      // ... or scan all modules within given directory
      'composables/**'
    ]
  }
})

Content

The content folder usually goes with the Nuxt Content Module which creates a file based CMS using your .md, .json, .yaml and .csv files.

To install Nuxt content

//yarn
yarn add --dev @nuxt/content

//npm 
npm install --save-dev @nuxt/content

//pnpm
pnpm add -D @nuxt/content

Add Nuxt Content to your build modules

//~nuxt.config.ts

export default defineNuxtConfig({  
modules: [
    '@nuxt/content'
  ],
  content: {
    // https://content.nuxtjs.org/api/configuration  
}})

Now Nuxt content is ready to be used in your Nuxt application. You can now create your markdown files in your content folder and import them as components in your nuxt app.

Layouts

Layouts, as the name implies, provides a structure for your Vue.js pages. As your app complexity increases you may want to define different layouts for different pages or components. The layout folder holds your layout files and are automatically loaded via asynchronous import. Layouts are used by adding to your app.vue, and either setting a layout property as part of your page metadata.

Setting a Default Layout

//~layouts/default.vue

<template>
  <div>
    Some default structure shared across all pages
    <slot />
  </div>
</template>

It is important that your layouts have a single root element to allow Nuxt to apply transitions between layout changes - and this root element cannot be a ``

Now lets use our default layout

//~app.vue

<template>
  <NuxtLayout>
    some page content
  </NuxtLayout>
</template>

Adding another layout

//~layouts/another.vue
<template>
  <div>
    A different structure for specific pages
    <slot />
  </div>
</template>

Next, let’s use our new layout. This can be achieved using 2 different methods

<template>
  <NuxtLayout :name="layout">
    <NuxtPage />
  </NuxtLayout>
</template>

<script setup>
const layout = "custom";
</script>

or

<template>
  <NuxtLayout>
    <NuxtPage />
  </NuxtLayout>
</template>

<script>
// This will work in both `<script setup>` and `<script>`
definePageMeta({
  layout: "custom",
});
</script>

Middleware

With Nuxt 3, you can include a customizable route middleware framework throughout your application, allowing you to extract code you want to run before traversing a particular route. This middleware only runs on the client side which is the Vue.js part of your Nuxt application .

There are 3 types of route middleware;

  1. Anonymous route middleware, which are defined directly in the pages where they are used.
  2. Named route middleware, which are placed in the middleware/ directory and will be automatically loaded via asynchronous import when used on a page.
  3. Global route middleware, which are placed in the middleware/ directory (with a .global suffix) and will be automatically run on every route change.

Now lets create an example middleware

~middleware/check.js

export default defineNuxtRouteMiddleware((to, from) => {
  if (to.params.id === 'hello')
 {
    return abortNavigation()
  }
  return navigateTo('/')
})

We can now use our example middleware in our page

<script setup>
definePageMeta({
  middleware: ["check"]
  // or middleware: 'auth'
})
</script>

Node modules

This folder contains all dependencies needed to run our nuxt application. This folder is usually managed by your package manager (npm, yarn or pnpm)

Pages

Pages is where all our routes are defined. This is one exciting feature in Nuxt 3 that i am always pumped about. Vue router has been installed under-the-hood so creating routes for our nuxt application has become so simple. Vue-router is optional as to activate it you will need to create your pages directory.

First let’s setup our Nuxt app to include page routing

//~app.vue

<template>
  <div>
    <NuxtPage />
  </div>
</template>

Now to create a route simply create the .vue file in the pages directory with the route name or create a subfolder with the route name and create an index.vue file in it. Simple as that, your new route is created

~pages
--|index.vue (/)
--|about.vue (/about)
--|product
----|index.vue (/product)

Plugins

Plugins *are self-contained code that usually add app-level functionality to your nuxt app.* Nuxt automatically reads the files in your pluginsdirectory and loads them at the creation of the Vue application. All plugins in your plugins/ directory are auto-registered, so you should not add them to your nuxt.config separately. Just like composables plugins on the top level of the plugins directory can be registered and also index files in subdirectories .

plugins 
| - myPlugin.ts (registered)
| - myOtherPlugin 
| --- supportingFile.ts (not registered)
| --- componentToRegister.vue (not registered)
| --- index.ts (registerd)

Public

This was previously known as the static folder in Nuxt 2 but in Nuxt 3 the public/ directory is directly served at the server root and contains public files that have to keep their names (e.g. robots.txt) or likely won't change (e.g. favicon.ico).

Server

The server folder contains all files needed on the server side of your Nuxt application. This includes apis , server middleware, server routes, server plugins and server utilities.

Conclusion

Hope you enjoyed reading this article on Understanding the Directory structure in Nuxt 3. I have been able to provide you with fundamental knowledge to the purpose of these directories to help you on your Nuxt journey. Our Mastering Nuxt course will dive deep down into explaining and using these concepts and directories.

Start learning Vue.js for free

Charles Allotey
Charles Allotey
Charles is a Frontend Developer at Vueschool. Has a passion for building great experiences and products using Vue.js and Nuxt.

Latest Vue School Articles

Crafting a Custom Component Library with Vue and Daisy UI

Crafting a Custom Component Library with Vue and Daisy UI

Do you want to build your own component library with Vue.js? We’ll show you how to get started in our course: Crafting a Custom Component Library with Vue and Daisy UI.
Daniel Kelly
Daniel Kelly
What Makes a Good (Vue) Component Library? A Checklist

What Makes a Good (Vue) Component Library? A Checklist

Considering building a Vue Component library? Checkout this checklist of concerns you should make sure to remember!
Daniel Kelly
Daniel Kelly

Our goal is to be the number one source of Vue.js knowledge for all skill levels. We offer the knowledge of our industry leaders through awesome video courses for a ridiculously low price.

More than 120.000 users have already joined us. You are welcome too!

Follow us on Social

© All rights reserved. Made with ❤️ by BitterBrains, Inc.