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[];
}