Guidance for Vue 3 using the official guide and API reference. Use when the user needs Vue 3 concepts, patterns, or API details to build components, apps, and tooling.
View on GitHubpartme-ai/full-stack-skills
development-skills-utils
February 1, 2026
Select agents to install to:
npx add-skill https://github.com/partme-ai/full-stack-skills/blob/main/skills/vue3/SKILL.md -a claude-code --skill vue3Installation paths:
.claude/skills/vue3/## When to use this skill Use this skill whenever the user wants to: - Learn or apply Vue 3 guide topics (from Introduction to advanced extras) - Implement Vue 3 components, reactivity, templates, and routing - Follow Vue 3 best practices, TypeScript usage, or performance guidance - Check Vue 3 API reference for specific functions or options ## How to use this skill 1. **Identify the topic** from the user request. 2. **Open the matching guide example** file in `examples/`. 3. **If API details are needed**, open the matching file in `api/`. 4. **Follow the official guidance** and keep outputs consistent with Vue 3 documentation. ### Guide mapping (one-to-one with Guide pages) **Getting Started** - `examples/getting-started/introduction.md` → https://cn.vuejs.org/guide/introduction.html - `examples/getting-started/quick-start.md` → https://cn.vuejs.org/guide/quick-start.html **Essentials** - `examples/essentials/application.md` → https://cn.vuejs.org/guide/essentials/application.html - `examples/essentials/template-syntax.md` → https://cn.vuejs.org/guide/essentials/template-syntax.html - `examples/essentials/reactivity-fundamentals.md` → https://cn.vuejs.org/guide/essentials/reactivity-fundamentals.html - `examples/essentials/computed.md` → https://cn.vuejs.org/guide/essentials/computed.html - `examples/essentials/class-and-style.md` → https://cn.vuejs.org/guide/essentials/class-and-style.html - `examples/essentials/conditional.md` → https://cn.vuejs.org/guide/essentials/conditional.html - `examples/essentials/list.md` → https://cn.vuejs.org/guide/essentials/list.html - `examples/essentials/event-handling.md` → https://cn.vuejs.org/guide/essentials/event-handling.html - `examples/essentials/forms.md` → https://cn.vuejs.org/guide/essentials/forms.html - `examples/essentials/watchers.md` → https://cn.vuejs.org/guide/essentials/watchers.html - `examples/essentials/template-refs.md` → https://cn.vuejs.org/guide/essentials/template-refs.html - `examples/essentials/co