vuejs-patterns
Installation
SKILL.md
Vue.js 3 Patterns Skill
This skill provides guidance for writing clean, maintainable Vue.js 3 code using the Composition API.
Component Structure
Single File Component (SFC) Template
<script setup lang="ts">
import { ref, computed, onMounted, watch } from 'vue'
import { useEmployeeStore } from '@/stores/employee'
import type { Employee } from '@/types'
// Props
interface Props {
employeeId: string
readonly?: boolean
}