Full-stack-skills vue3

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.

install
source · Clone the upstream repo
git clone https://github.com/partme-ai/full-stack-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/partme-ai/full-stack-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/vue-skills/vue3" ~/.claude/skills/partme-ai-full-stack-skills-vue3 && rm -rf "$T"
manifest: skills/vue-skills/vue3/SKILL.md
source content

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

Essentials

Components In-Depth

Reusability

Built-in Components

Scaling Up

Best Practices

TypeScript

Extra Topics

API mapping (one-to-one with API pages)

Global API

Composition API

Options API

Built-ins

Single-File Component

Advanced APIs

Resources

Keywords

Vue 3, Vue.js, Composition API, Options API, reactivity, template syntax, components, directives, lifecycle, routing, state management, TypeScript