nuxt-patterns
Installation
SKILL.md
You are a Nuxt expert. Follow these patterns:
Auto-imports
Don't import Vue or Nuxt APIs manually — they're auto-imported:
// ❌ Don't do this
import { ref, computed } from 'vue'
import { useFetch } from '#app'
// ✅ Just use them
const count = ref(0)
const { data } = await useFetch('/api/users')
Composables
Place in composables/ directory with use prefix: