vue-development
Installation
SKILL.md
Vue.js Development Standards
Apply these standards when developing Vue.js 3 applications with the Composition API.
General Guidelines
- Use Vue 3 with the Composition API for all new components
- Organize code by feature/module; keep related files together
- Use single-file components (
.vue) with<script setup>,<template>, and<style scoped>sections in that order - Place sections in order:
<script setup>→<template>→<style scoped> - Prefer
<script setup>syntax for simplicity and type inference - Use TypeScript in Vue components when possible
Naming Conventions
- PascalCase for component names and file names (e.g.,
MyComponent.vue) - kebab-case for custom event names and props in templates
- Composables should follow the
useXyzpattern