@newbie360 Livewire 3 has literally just been released. Give things a chance to catch up and update.
Jul 22, 2023
6
Level 24
When Jetstream update to use Livewire v3 ?
i tired Inertia + Vue 4 weeks, but i find out the main problem is we need to write too much of code,
so i go back to Livewire, now Livewire v3 has https://livewire.laravel.com/docs/navigate , this totally changed the dev flow, it means we can only use full-page-component in the route like SPA without page refresh
Route::get('/', Dashboard::class);
Route::get('/posts', ShowPosts::class);
Route::get('/users', ShowUsers::class);
<nav>
<a href="/" wire:navigate>Dashboard</a>
<a href="/posts" wire:navigate>Posts</a>
<a href="/users" wire:navigate>Users</a>
</nav>
holy s... , can't wait for Jetstream update to use Livewire v3
Level 80
1 like
Please or to participate in this conversation.