inertia-vue
Installation
SKILL.md
Inertia + Vue 3 — Frontend Layer
This skill covers the Vue 3 frontend of an AdonisJS + Inertia project.
For backend patterns → use the adonisjs skill alongside this one.
Always import from the AdonisJS package
<script setup>
// CORRECT — AdonisJS wrapper adds route-name support
import { Form, Link } from '@adonisjs/inertia/vue'
// WRONG — raw Inertia, loses route-name integration
import { Form, Link } from '@inertiajs/vue3'
</script>
Related skills