What is the difference between vue-routing and laravel inertia? with vue routing component added in dom without page reloading. and with inertia component name is returned from server side does it reload partial page?
What is the difference between vue-routing and laravel inertia? with vue routing component added in dom without page reloading. and with inertia component name is returned from server side does it reload partial page?
Vue routing is defined in client-side, while Inertia routing is defined in server-side. If you are using Inertia, you don't need Vue Router. Simply create routes using your server-side framework of choice. Read their docs to spot more differences between them.
Inertia routing: https://inertiajs.com/routing
Vue routing: https://vuejs.org/guide/scaling-up/routing.html
And yes, Inertia does partial reloads - https://inertiajs.com/partial-reloads