You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When clicking on the link (using Link), the loading is displayed and then the data. When clicking on the link again, it only loads and does not display the data.
Steps to reproduce:
When loading the page, the loading text is displayed. When clicking on the links, the loading is also displayed, but when clicking twice on the same link, the loading text is displayed and the object with the data is not returned.
Here is the code used for testing:
`
<Link href="/">All Users</Link> -
<Link href="/?status=active">Users active</Link>
<Deferred data="users">
<template #fallback>
<div>Loading...</div>
</template>
<div v-for="user in props.users">
<p class="p-2 bg-slate-100 mb-1">My name is {{ user.name }}</p>
</div>
</Deferred>
`
The text was updated successfully, but these errors were encountered:
Version:
@inertiajs/vue3
version: #.#.#Describe the problem:
When clicking on the link (using Link), the loading is displayed and then the data. When clicking on the link again, it only loads and does not display the data.
Steps to reproduce:
When loading the page, the loading text is displayed. When clicking on the links, the loading is also displayed, but when clicking twice on the same link, the loading text is displayed and the object with the data is not returned.
Here is the code used for testing:
`
`
The text was updated successfully, but these errors were encountered: