vue
Installation
SKILL.md
Vue
Vue 3 uses the Composition API for reactive state management, single-file components (.vue), and a virtual DOM with compiler optimizations. It scales from progressive enhancement to full SPAs.
Installation
# Create Vue project with Vite
npm create vue@latest my-app
cd my-app
npm install
npm run dev
Project Structure
# Vue 3 project layout
src/
Related skills