3👍
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
Source:stackexchange.com