未定义Vue组件:在我将按钮从index.blade.php移动到FollowButton.vue,vue 3,laravel 8之后,它显示在控制台日志中。你可以看到下面的代码。
这里是app.js
import { createApp } from 'vue';
components.forEach(component => app.component(component.name, component))
const app = createApp({}).component(
'follow-button',
require('./components/FollowButton').default
);
app.mount('#app');
这里是FollowButton.vue
<template>
<div>
<button class="btn btn-primary ml-4" >Follow</button>
</div>
</template>
<script>
export default {
mounted() {
console.log('Component mounted.')
}
}
</script>
1条答案
按热度按时间vvppvyoh1#
代码反射
您使用
const app = createApp({})
创建了一个空应用。在这个空的应用程序中,您使用app.component('follow-button', FollowButton)
声明了follow-button
组件。现在,您想要使用该组件,但是没有这样做的地方,因为您创建的应用程序是“空的”,如空对象
{}
所示。方案一
相反,您可以创建一个
App.vue
文件,作为Vue应用程序的基础:const app = createApp(App)
。Vue Playcode for Example
方案二
或者,您可以简单地声明一个
template
,其中可以使用follow-button
组件。Vue Playcode for Example