vue
Installation
SKILL.md
Critical Patterns
Script Setup (REQUIRED)
<!-- ✅ ALWAYS: Use script setup with TypeScript -->
<script setup lang="ts">
import { ref, computed } from 'vue';
interface User {
id: string;
name: string;
}
const props = defineProps<{
user: User;
}>();