Configurar rutas para Vue en Laravel

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