标签: php laravel vue.js
在浏览VueJS路由时刷新页面时,服务器抛出错误,因为这些路由未在routes/web.php中定义。
routes/web.php
这是我试图抓住路线的方法:
Route::get('/mealPlansV2/{catchall?}', 'MealPlansV2Controller@index'); Route::get('/menusV2/{catchall?}', 'OrdersController@index');
我有2个模块“用餐计划”和“菜单”,这就是为什么我创建了两条单独的路线。