[Vuejs]-How to use Vue on a site with multiple pages?

0👍

Your route should be like this to accept vue router

Route::get('/{view?}', function () {
    return view('vue');
})->where('view', '^(?!api\/)[\/\w\.-]*');

this will accept every route exept api routes

Leave a comment