nuxt
Installation
SKILL.md
Nuxt
Nuxt is the full-stack framework for Vue. Nuxt 4 (2025) simplifies directory structure and enhances performance with the Nitro server engine.
When to Use
- Vue Applications: The de-facto standard for production Vue apps.
- Universal Rendering: Switch between SSR, SSG, and CSR per-route.
- Module Ecosystem: rich modules (Nuxt Image, Nuxt Content, Pinia).
Quick Start
Nuxt auto-imports components and composables.
<script setup>
// useFetch is auto-imported
const { data: quote } = await useFetch("/api/quote");
</script>