Nuxt - sgml/signature GitHub Wiki

API

  • "nuxt" "context" "route" "name" site:v2.nuxt.com middleware

ENV

NUXT_TARGET:

{
  "scripts": {
    "generate": "cross-env NUXT_TARGET=static nuxt generate"
  },
  "devDependencies": {
    "cross-env": "^7.0.3"
  }
}

File Structure

  assets:                    # Asset files such as styles, images
    - ...
  components:                # Vue components
    - ...
  composables:               # Composition API functions
    - ...
  content:                   # Content files for @nuxt/content
    - ...
  layouts:                   # Layout components
    - ...
  middleware:                # Middleware functions
    - ...
  pages:                     # Page components for routing
    - ...
  plugins:                   # Plugins to extend Vue
    - ...
  public:                    # Static assets
    - ...
  server:                    # Server-side code (e.g., API routes)
    - ...
  stores:                    # Pinia or Vuex stores
    - ...

Naming Conventions, Globals, and File Structure

Migrating from Nuxt 2 to Nuxt 3

Pages Directory

  1. New Structure: Nuxt 3 introduces a new directory structure. The pages directory is now used for routing and layout management. In Nuxt 2, you had separate pages and layouts directories.
  2. Dynamic Routes: The format for defining dynamic routes has changed. In Nuxt 2, you used _id for dynamic routes, while in Nuxt 3, you use [id].
  3. Nested Routes: Nuxt 3 uses <NuxtPage> component for nested routes, replacing <Nuxt> and <NuxtChild> from Nuxt 2.
  4. Layouts: Layouts in Nuxt 3 use slots instead of the <Nuxt> component. This allows for more advanced use cases with named and scoped slots.

nuxt.config.js

  1. New Configuration Format: Nuxt 3 uses a new configuration format based on the defineNuxtConfig function, which provides better TypeScript support and an improved developer experience.
  2. TypeScript Support: Nuxt 3 fully embraces TypeScript, making it easier to write type-safe code.
  3. Global Imports: Nuxt 3 automatically identifies and imports core functions like ref and reactive, eliminating the need for manual imports in each component.
  4. Middleware: Nuxt 3 has a revamped middleware system, providing more flexibility and control over your application's behavior.

HTML Specific JavaScript

  • Update HTML templates to use Vue 3 syntax.
  • Replace deprecated Vue 2 directives with Vue 3 equivalents.
  • Ensure all HTML elements are properly bound and updated.

CSS Specific JavaScript

  • Update CSS classes and styles to match the new Nuxt 3 structure.
  • Ensure CSS is properly linked and applied to components.
  • Adjust any CSS-in-JS libraries to work with Vue 3.

VueX to Pinia Specific JavaScript

  • Replace Vuex store setup with Pinia store setup.
  • Migrate Vuex actions, mutations, and state to Pinia equivalents.
  • Update any components that interact with the store to use Pinia.

Routing Specific JavaScript

  • Update routing configuration to use the new Nuxt 3 pages directory.
  • Ensure all routes are properly defined and linked to components.
  • Adjust any programmatic routing code to use the new Nuxt 3 router API.

Static Site Generation via Markdown

Cookbook

CVEs

Storybook

Release Notes / Changelogs / Roadmaps

Async Utilities

  async timeout(context, payload) {
    console.warn('waiting', payload)
    await new Promise((resolve) => setTimeout(resolve, payload))
  }

  async foo(context) {
    await context.dispatch('timeout', 1000)
  }

i18N Utilities

// each param replaces the literal; $route is used instead of this.$route
// for each iteration of foo, use foo.id to get the unique URL
localePath({
  name: 'slug-foos-foo-fooid',
  params: { slug: $route.params.slug, fooid: foo.id }
})

Nginx

Config

https://vuejs.org/v2/guide/deployment.html

https://vue-loader.vuejs.org/guide/pre-processors.html

https://nuxtjs.org/faq/nginx-proxy/

https://www.digitalocean.com/community/tutorials/implementing-authentication-in-nuxtjs-app

https://vuejs-templates.github.io/webpack/structure.html

https://github.com/vuejs/vuejs.org/blob/master/src/v2/guide/components-edge-cases.md#x-templates

https://vuejsdevelopers.com/2017/03/24/vue-js-component-templates/

https://github.com/vuejs/vue/blob/master/examples/tree/index.html

https://stackoverflow.blog/2020/03/25/tracking-down-performance-pitfalls-in-vue-js/?cb=1

https://markus.oberlehner.net/blog/accessible-custom-vue-form-select-component-simple-but-advanced/

https://www.optasy.com/blog/are-there-any-strong-reasons-not-use-nuxtjs-7-issues-might-discourage-you-choosing-it

https://dev.to/vuevixens/dockerise-your-nuxt-ssr-app-like-a-boss-a-true-vue-vixens-story-4mm6

https://jonathanmh.com/deploying-a-nuxt-js-app-with-docker/

https://nuxtjs.org/api/nuxt/

Routing

https://nuxtjs.org/api/components-nuxt-child/

https://zaengle.com/blog/named-routes-in-nuxt

https://router.vuejs.org/guide/essentials/navigation.html

https://farnabaz.ir/@farnabaz/reveal-hidden-capabilities-of-nuxt-router/

https://css-tricks.com/creating-dynamic-routes-in-a-nuxt-application/

https://blog.pusher.com/demystifying-page-transitions-nuxt/

https://nuxt-community.github.io/nuxt-i18n/routing.html

https://www.vuesnippets.com/

Middleware

Lifecycle

Components

Guides

Sample Code

Plugins

buefy / Bulma

v-model

pub/sub

Internals

Reactivity

References

⚠️ **GitHub.com Fallback** ⚠️