用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/G1Joshi/Agent-Skills --skill nuxt命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | nuxt |
| description | Nuxt.js Vue framework with SSR and auto-imports. Use for full-stack Vue applications. |
Nuxt is the full-stack framework for Vue. Nuxt 4 (2025) simplifies directory structure and enhances performance with the Nitro server engine.
Nuxt auto-imports components and composables.
<script setup>
// useFetch is auto-imported
const { data: quote } = await useFetch("/api/quote");
</script>
<template>
<blockquote>{{ quote.text }}</blockquote>
</template>
Nuxt's server engine. It builds your server to run anywhere (Node, Deno, Bun, Edge/Serverless) without config.
You don't need to import { ref } from 'vue' or import UserCard from './components/UserCard.vue'. Nuxt does it for you.
server/api/hello.ts creates an API endpoint /api/hello.
Do:
useFetch: It handles SSR data fetching correctly (preventing double-fetch on client).@nuxt/image, @nuxtjs/tailwindcss.app/ directory: Nuxt 4 defaults code to app/ to keep root clean.Don't:
axios: Use the built-in $fetch (OFetch) which is smarter and lighter.