ilk kurulumla gelen kendi kullandığı AppLayout içinde
<Link :href="route('dashboard')">
<ApplicationMark class="block h-9 w-auto" />
</Link>
bu link yapısı sorunsuz çalışıyor AppLayout.vue
<script setup>
import { ref } from 'vue';
import { Head, Link, router } from '@inertiajs/vue3';
bu şekilde kullanıyor benin <SidebarContent>'im ise
<script>
import { Link } from '@inertiajs/vue3';
export default {
data: () => ({
openlink: false,
})
}
</script>
bu şekilde
<Link :href="route('brands.index')" class="flex items-center px-6 py-2 text-right hover:bg-gray-100">
<span>Tüm Markalar</span>
</Link>
Bunu kullanamadım aldığım hata ise
[Vue warn]: Failed to resolve component: Link
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.
at <SidebarContent>