Vue отказывается отрисовывать компонент. Причем любой. Заново все пересобирал, поставил уже пустые компоненты, все равно ошибка:
[Vue warn]: Failed to resolve component: имя компонента
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.
at <App>
app.js:
import './bootstrap';
import { createApp } from 'vue';
import tyt from "./components/tyt.vue";
import store from './store';
const app = createApp({
components:{
tyt
}
});
app.use(store);
app.mount('#app');
в компоненте:
<template>
<div>
vfdf
</div>
</template>
<script>
export default {
name: "tyt"
}
</script>
в шаблоне:
<section style="padding-top: 7rem;" id="app">
<tyt></tyt>
rt
</section>
сам app.js подключаю через vite:
@vite([
'resources/js/app.js',
])