vue-typescript
Installation
SKILL.md
Vue + TypeScript Development
Expert guidance for Vue 3 with TypeScript, Composition API, Pinia state management, and VueUse utilities.
Core Patterns
Component with TypeScript
<script setup lang="ts">
import { ref, computed, onMounted } from 'vue';
import type { User } from '@/types';
// Props with TypeScript
interface Props {
userId: string;
initialData?: User;
}