当我使用时,我使用<inertia-link>
子test.vue
组件不会呈现,但如果我删除这些标签,它会呈现。关于我做错了什么的任何想法?
测试.vue
<template>
<div>
<div class="p-6 sm:px-20 bg-white border-b border-gray-200">
<div>
<b-logo class="block h-12 w-auto" />
</div>
<div class="mt-1 text-2xl">
{{ $page.user.first_name }} {{ $page.user.last_name }}
</div>
<inertia-link :href="#">
test-link
</inertia-link>
</div>
</div>
</template>
<script>
import BLogo from './BLogo'
export default {
components: {
BLogo,
},
}
</script>
该组件在另一个 .vue 文件中使用<my-test />
这是在 laravel 8 中完成的。另外,我注意到如果我<inertia-link>
在父 vue 中使用标签,它就会显示出来。所以标签有效。
(我认为它被默认的 Jetstream 配置文件页面使用)。