Mengatur rute untuk vue di Laravel

Route::get('{any}', function () {
    return view('welcome');
})->where('any', '.*');
Fancy Falcon