| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422 |
- ---
- name: inertia-vue-development
- description: "Develops Inertia.js v2 Vue client-side applications. Activates when creating Vue pages, forms, or navigation; using <Link>, <Form>, useForm, or router; working with deferred props, prefetching, or polling; or when user mentions Vue with Inertia, Vue pages, Vue forms, or Vue navigation."
- license: MIT
- metadata:
- author: laravel
- ---
- @php
- /** @var \Laravel\Boost\Install\GuidelineAssist $assist */
- @endphp
- # Inertia Vue Development
- ## Documentation
- Use `search-docs` for detailed Inertia v2 Vue patterns and documentation.
- ## Basic Usage
- ### Page Components Location
- Vue page components should be placed in the `{{ $assist->inertia()->pagesDirectory() }}` directory.
- ### Page Component Structure
- Important: Vue components must have a single root element.
- @verbatim
- @boostsnippet("Basic Vue Page Component", "vue")
- <script setup>
- defineProps({
- users: Array
- })
- </script>
- <template>
- <div>
- <h1>Users</h1>
- <ul>
- <li v-for="user in users" :key="user.id">
- {{ user.name }}
- </li>
- </ul>
- </div>
- </template>
- @endboostsnippet
- @endverbatim
- ## Client-Side Navigation
- ### Basic Link Component
- Use `<Link>` for client-side navigation instead of traditional `<a>` tags:
- @boostsnippet("Inertia Vue Navigation", "vue")
- <script setup>
- import { Link } from '@inertiajs/vue3'
- </script>
- <template>
- <div>
- <Link href="/">Home</Link>
- <Link href="/users">Users</Link>
- <Link :href="`/users/${user.id}`">View User</Link>
- </div>
- </template>
- @endboostsnippet
- ### Link with Method
- @boostsnippet("Link with POST Method", "vue")
- <script setup>
- import { Link } from '@inertiajs/vue3'
- </script>
- <template>
- <Link href="/logout" method="post" as="button">
- Logout
- </Link>
- </template>
- @endboostsnippet
- ### Prefetching
- Prefetch pages to improve perceived performance:
- @boostsnippet("Prefetch on Hover", "vue")
- <script setup>
- import { Link } from '@inertiajs/vue3'
- </script>
- <template>
- <Link href="/users" prefetch>
- Users
- </Link>
- </template>
- @endboostsnippet
- ### Programmatic Navigation
- @boostsnippet("Router Visit", "vue")
- <script setup>
- import { router } from '@inertiajs/vue3'
- function handleClick() {
- router.visit('/users')
- }
- // Or with options
- function createUser() {
- router.visit('/users', {
- method: 'post',
- data: { name: 'John' },
- onSuccess: () => console.log('Done'),
- })
- }
- </script>
- <template>
- <Link href="/users">Users</Link>
- <Link href="/logout" method="post" as="button">Logout</Link>
- </template>
- @endboostsnippet
- ## Form Handling
- @if($assist->inertia()->hasFormComponent())
- ### Form Component (Recommended)
- The recommended way to build forms is with the `<Form>` component:
- @verbatim
- @boostsnippet("Form Component Example", "vue")
- <script setup>
- import { Form } from '@inertiajs/vue3'
- </script>
- <template>
- <Form action="/users" method="post" #default="{ errors, processing, wasSuccessful }">
- <input type="text" name="name" />
- <div v-if="errors.name">{{ errors.name }}</div>
- <input type="email" name="email" />
- <div v-if="errors.email">{{ errors.email }}</div>
- <button type="submit" :disabled="processing">
- {{ processing ? 'Creating...' : 'Create User' }}
- </button>
- <div v-if="wasSuccessful">User created!</div>
- </Form>
- </template>
- @endboostsnippet
- @endverbatim
- ### Form Component With All Props
- @verbatim
- @boostsnippet("Form Component Full Example", "vue")
- <script setup>
- import { Form } from '@inertiajs/vue3'
- </script>
- <template>
- <Form
- action="/users"
- method="post"
- #default="{
- errors,
- hasErrors,
- processing,
- progress,
- wasSuccessful,
- recentlySuccessful,
- setError,
- clearErrors,
- resetAndClearErrors,
- defaults,
- isDirty,
- reset,
- submit
- }"
- >
- <input type="text" name="name" :value="defaults.name" />
- <div v-if="errors.name">{{ errors.name }}</div>
- <button type="submit" :disabled="processing">
- {{ processing ? 'Saving...' : 'Save' }}
- </button>
- <progress v-if="progress" :value="progress.percentage" max="100">
- {{ progress.percentage }}%
- </progress>
- <div v-if="wasSuccessful">Saved!</div>
- </Form>
- </template>
- @endboostsnippet
- @endverbatim
- @if($assist->inertia()->hasFormComponentResets())
- ### Form Component Reset Props
- The `<Form>` component supports automatic resetting:
- - `resetOnError` - Reset form data when the request fails
- - `resetOnSuccess` - Reset form data when the request succeeds
- - `setDefaultsOnSuccess` - Update default values on success
- Use the `search-docs` tool with a query of `form component resetting` for detailed guidance.
- @verbatim
- @boostsnippet("Form with Reset Props", "vue")
- <script setup>
- import { Form } from '@inertiajs/vue3'
- </script>
- <template>
- <Form
- action="/users"
- method="post"
- reset-on-success
- set-defaults-on-success
- #default="{ errors, processing, wasSuccessful }"
- >
- <input type="text" name="name" />
- <div v-if="errors.name">{{ errors.name }}</div>
- <button type="submit" :disabled="processing">
- Submit
- </button>
- </Form>
- </template>
- @endboostsnippet
- @endverbatim
- @else
- Note: This version of Inertia does not support `resetOnError`, `resetOnSuccess`, or `setDefaultsOnSuccess` on the `<Form>` component. Using these props will cause errors. Upgrade to Inertia v2.2.0+ to use these features.
- @endif
- Forms can also be built using the `useForm` composable for more programmatic control. Use the `search-docs` tool with a query of `useForm helper` for guidance.
- @endif
- ### `useForm` Composable
- @if($assist->inertia()->hasFormComponent() === false)
- For Inertia v2.0.x: Build forms using the `useForm` composable as the `<Form>` component is not available until v2.1.0+.
- @else
- For more programmatic control or to follow existing conventions, use the `useForm` composable:
- @endif
- @verbatim
- @boostsnippet("useForm Composable Example", "vue")
- <script setup>
- import { useForm } from '@inertiajs/vue3'
- const form = useForm({
- name: '',
- email: '',
- password: '',
- })
- function submit() {
- form.post('/users', {
- onSuccess: () => form.reset('password'),
- })
- }
- </script>
- <template>
- <form @submit.prevent="submit">
- <input type="text" v-model="form.name" />
- <div v-if="form.errors.name">{{ form.errors.name }}</div>
- <input type="email" v-model="form.email" />
- <div v-if="form.errors.email">{{ form.errors.email }}</div>
- <input type="password" v-model="form.password" />
- <div v-if="form.errors.password">{{ form.errors.password }}</div>
- <button type="submit" :disabled="form.processing">
- Create User
- </button>
- </form>
- </template>
- @endboostsnippet
- @endverbatim
- ## Inertia v2 Features
- ### Deferred Props
- Use deferred props to load data after initial page render:
- @verbatim
- @boostsnippet("Deferred Props with Empty State", "vue")
- <script setup>
- defineProps({
- users: Array
- })
- </script>
- <template>
- <div>
- <h1>Users</h1>
- <div v-if="!users" class="animate-pulse">
- <div class="h-4 bg-gray-200 rounded w-3/4 mb-2"></div>
- <div class="h-4 bg-gray-200 rounded w-1/2"></div>
- </div>
- <ul v-else>
- <li v-for="user in users" :key="user.id">
- {{ user.name }}
- </li>
- </ul>
- </div>
- </template>
- @endboostsnippet
- @endverbatim
- ### Polling
- Use the `usePoll` composable to automatically refresh data at intervals. It handles cleanup on unmount and throttles polling when the tab is inactive.
- @boostsnippet("Basic Polling", "vue")
- <script setup>
- import { usePoll } from '@inertiajs/vue3'
- defineProps({
- stats: Object
- })
- usePoll(5000)
- </script>
- <template>
- <div>
- <h1>Dashboard</h1>
- <div>Active Users: {{ stats.activeUsers }}</div>
- </div>
- </template>
- @endboostsnippet
- @boostsnippet("Polling With Request Options and Manual Control", "vue")
- <script setup>
- import { usePoll } from '@inertiajs/vue3'
- defineProps({
- stats: Object
- })
- const { start, stop } = usePoll(5000, {
- only: ['stats'],
- onStart() {
- console.log('Polling request started')
- },
- onFinish() {
- console.log('Polling request finished')
- },
- }, {
- autoStart: false,
- keepAlive: true,
- })
- </script>
- <template>
- <div>
- <h1>Dashboard</h1>
- <div>Active Users: {{ stats.activeUsers }}</div>
- <button @click="start">Start Polling</button>
- <button @click="stop">Stop Polling</button>
- </div>
- </template>
- @endboostsnippet
- - `autoStart` (default `true`) — set to `false` to start polling manually via the returned `start()` function
- - `keepAlive` (default `false`) — set to `true` to prevent throttling when the browser tab is inactive
- ### WhenVisible (Infinite Scroll)
- Load more data when user scrolls to a specific element:
- @verbatim
- @boostsnippet("Infinite Scroll with WhenVisible", "vue")
- <script setup>
- import { WhenVisible } from '@inertiajs/vue3'
- defineProps({
- users: Object
- })
- </script>
- <template>
- <div>
- <div v-for="user in users.data" :key="user.id">
- {{ user.name }}
- </div>
- <WhenVisible
- v-if="users.next_page_url"
- data="users"
- :params="{ page: users.current_page + 1 }"
- >
- <template #fallback>
- <div>Loading more...</div>
- </template>
- </WhenVisible>
- </div>
- </template>
- @endboostsnippet
- @endverbatim
- ## Server-Side Patterns
- Server-side patterns (Inertia::render, props, middleware) are covered in inertia-laravel guidelines.
- ## Common Pitfalls
- - Using traditional `<a>` links instead of Inertia's `<Link>` component (breaks SPA behavior)
- - Forgetting that Vue components must have a single root element
- - Forgetting to add loading states (skeleton screens) when using deferred props
- - Not handling the `undefined` state of deferred props before data loads
- - Using `<form>` without preventing default submission (use `<Form>` component or `@submit.prevent`)
- - Forgetting to check if `<Form>` component is available in your Inertia version
|