vue-component-patterns

Installation
SKILL.md

Vue Component Patterns

Master Vue component patterns to build reusable, maintainable components with proper prop validation, events, and composition.

Props Patterns

Basic Props with TypeScript

<script setup lang="ts">
interface Props {
  title: string;
  count?: number;
  items: string[];
}
Installs
55
GitHub Stars
166
First Seen
Jan 20, 2026
vue-component-patterns — thebushidocollective/han