What problem does it solve? Building Vue frontends for Inertia.js applications requires knowing the correct v3 APIs for pages, forms, navigation, and data loading; this Skill provides the correct patterns so you avoid broken SPA behavior and outdated v2 syntax. ## Core Features & Use Cases - Page Components & Navigation: Create Vue page components in resources/js/Pages and implement client-side navigation with <Link>, router.visit, and prefetching. - Form Handling: Build forms with the <Form> component or useForm composable, including validation errors, progress indicators, and reset behavior. - Inertia v3 Features: Implement deferred props, optimistic updates, instant visits, layout props, polling, WhenVisible, InfiniteScroll, and standalone HTTP requests via useHttp. - Use Case: When adding a user creation form to a Laravel + Vue app, use this Skill to generate a <Form> component with error display, processing state, and reset-on-success behavior. ## Quick Start Create an Inertia Vue page component with a form that posts to /users and displays validation errors.