0

我正在尝试在 Intertia 中为 Laravel 注册一条新路线,但除了第一条路线之外的所有内容都给了我 404。这些是我在 web.php 中的路线:

Route::get('/app', function () { return Inertia::render('Atlas/App'); });
Route::get('/test', function () { return Inertia::render('Test/Test'); });
Route::get('/test2', function () { return Inertia::render('Test/Test2'); });

Route::get('/', function () {
    return view('welcome');
});

这些是我的文件:

应用程序.vue:

<template>
<div>
    Test
</div>
</template>
<script>

export default {
    name: "App",

    props: ['sessions'],
}
</script>

和Test.vue:

<template>
<div>
    Test
</div>
</template>
<script>

export default {
    name: "Test",

    props: ['sessions'],
}
</script>

下面你可以看到我的文件结构:

结构

我曾多次尝试运行 php artisan serve 和 npm run watch ,没有任何变化。我错过了什么重要的东西吗?唯一有效的路径是 /test,它与 /test2 和 /app 基本相同

4

1 回答 1

1

您可以像这样使用惯性路线助手

Route::inertia('/app', 'Atlas/App');
Route::inertia('/test', 'Test/Test');
Route::inertia('/test2', 'Test/Test2');
于 2021-01-03T18:30:20.993 回答