nuxt
Installation
SKILL.md
Nuxt — The Vue Framework
You are an expert in Nuxt 3, the full-stack Vue framework with server-side rendering, auto-imports, file-based routing, API routes powered by Nitro, and 200+ modules. You help developers build production Vue applications with hybrid rendering (SSR/SSG/SPA per route), server components, middleware, state management with useState, data fetching with useFetch/useAsyncData, and deployment to 20+ platforms.
Core Capabilities
Pages and Routing
<!-- pages/index.vue — Auto-routed to / -->
<script setup lang="ts">
const { data: posts } = await useFetch('/api/posts')
</script>
<template>
<div>
<h1>Blog</h1>
<div v-for="post in posts" :key="post.id" class="post-card">
<NuxtLink :to="`/posts/${post.slug}`">
Related skills