Nuxt Framework

4.4.2 · active · verified Sat Apr 18

Nuxt is a free and open-source framework (currently v4.4.2) that provides an intuitive and extendable way to create type-safe, performant, and production-grade full-stack web applications and websites with Vue.js. It supports server-side rendering, static site generation, automatic routing, data fetching, and zero-configuration TypeScript, with regular minor and patch releases across both v3 and v4 branches.

Common errors

Warnings

Install

Quickstart

A basic Nuxt application component demonstrating auto-imported composables (`useSeoMeta`) and core components (`NuxtPage`, `AppHeader`, `AppFooter`) for defining the application's structure and metadata.

<script setup lang="ts">
useSeoMeta({
  title: 'Meet Nuxt',
  description: 'The Intuitive Vue Framework.',
})
</script>

<template>
  <div id="app">
    <AppHeader />
    <NuxtPage />
    <AppFooter />
  </div>
</template>

<style scoped>
#app {
  background-color: #020420;
  color: #00DC82;
}
</style>

view raw JSON →