mayrlabs-framework-vue
Installation
SKILL.md
MayR Labs Vue Doctrine
Purpose
To standardize Vue 3 development by deprecating the Options API and fully embracing the Composition API, resulting in highly composable and type-safe components.
Audience
AI Agents writing Vue.js components and composables.
Core Rules & Constraints
1. Composition API Exclusively
- Banned: Do not use the Options API (
data(),methods,computedblocks insideexport default {}). - Enforced: Always use
<script setup lang="ts">.