我正在开发一个应用程序并第一次使用 Laravel Breeze Vue。只是一些快速的背景知识,Laravel Breeze 提供了一些用于身份验证的快速脚手架。当用户登录时,他们会看到一个简单的仪表板页面。我已按照以下内容添加了指向此页面的新链接。
应用程序/资源/js/Layouts/Authenticated.vue
<!-- Navigation Links -->
<div class="hidden space-x-8 sm:-my-px sm:ml-10 sm:flex">
<BreezeNavLink :href="route('dashboard')" :active="route().current('dashboard')">
Dashboard
</BreezeNavLink>
<BreezeNavLink :href="route('client.index')" :active="route().current('client.index')">
Clients
</BreezeNavLink>
</div>
我还在文件路径app/resources/js/Pages/Client/Index.vue创建了一个 Index.vue 文件。如下所示:
<template>
<Head title="Clients" />
<BreezeAuthenticatedLayout>
<template #header>
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
Clients
</h2>
</template>
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6 bg-white border-b border-gray-200">
You're logged in!
</div>
</div>
</div>
</div>
</BreezeAuthenticatedLayout>
</template>
<script>
import BreezeAuthenticatedLayout from '@/Layouts/Authenticated.vue'
import { Head } from '@inertiajs/inertia-vue3';
export default {
components: {
BreezeAuthenticatedLayout,
Head,
},
}
</script>
我在我的web.php文件中使用路由资源,如下所示。我已经确认 client.index 是通过php artisan route:list
.
//client routing
Route::middleware(['auth', 'verified'])->group(function() {
Route::resource('client', ClientController::class);
});
我面临两个问题。第一个问题是该链接不会在我的导航链接中呈现。第二个问题是 Index.vue 页面也不会呈现。我试过做npm run dev
,npm run watch
并清除缓存。这些都没有奏效。请向我提供一些有关如何解决这些问题的见解。