uni-helper/skills

vue

Vue.js progressive JavaScript framework. Use when building Vue components, working with reactivity (ref, reactive, computed, watch), or implementing Vue Composition API patterns.

First seen Jan 30, 2026

Installation

$ npx skills add uni-helper/skills --skill vue

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from uni-helper/skills.

npx skills add uni-helper/skills

Browse all from uni-helper/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 103
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version2026.1.28
More metadata
author
Anthony Fu
version
2026.1.28
source
Generated from https://github.com/vuejs/docs, scripts located at https://github.com/antfu/skills

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,130 B
  • docs SUMMARY.md 186 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 667 installs

SKILL.md

Vue

The skill is based on Vue 3.5+, generated at 2026-01-28.

Vue is a progressive JavaScript framework for building user interfaces. It builds on standard HTML, CSS, and JavaScript with intuitive API and world-class documentation. The Composition API with <script setup> and TypeScript is the recommended approach for building Vue applications.

Core References

Topic Description Reference
Reactivity System ref, reactive, computed, watch, and watchEffect [core-reactivity](references/core-reactivity.md)

Components

Topic Description Reference
Props Declare and validate component props with TypeScript [components-props](references/components-props.md)
Events (Emits) Emit custom events from components [components-emits](references/components-emits.md)
Slots Pass template content to child components [components-slots](references/components-slots.md)
v-model Two-way binding on custom components [components-v-model](references/components-v-model.md)
Lifecycle Hooks Run code at specific component lifecycle stages [components-lifecycle](references/components-lifecycle.md)

Features

Script Setup & TypeScript

Topic Description Reference
Script Setup Composition API syntactic sugar for SFCs [features-script-setup](references/features-script-setup.md)
TypeScript Type-safe Vue components with Composition API [features-typescript](references/features-typescript.md)

Reusability

Topic Description Reference
Composables Encapsulate and reuse stateful logic [features-composables](references/features-composables.md)
Custom Directives Low-level DOM manipulation directives [features-directives](references/features-directives.md)
Template Refs Direct DOM and component instance access [features-template-refs](references/features-template-refs.md)

Advanced

Topic Description Reference
Provide/Inject Dependency injection across component tree [advanced-provide-inject](references/advanced-provide-inject.md)
Async & Suspense Top-level await pitfalls, async components, Suspense [advanced-async-suspense](references/advanced-async-suspense.md)

Key Recommendations

  • Use <script setup lang="ts"> for all components
  • Prefer ref() over reactive() for declaring state
  • Use type-based prop declarations with interfaces
  • Use defineModel() for v-model (3.4+)
  • Destructure props reactively (3.5+) for cleaner code
  • Extract composables for reusable stateful logic