Не выводится ни теги, ни компоненты на странице , в чем трабла? Во втором vuе такое подключение работало нормально, а в третьем дичь, компилятор отработал без ошибок, в консоли тоже!
на странице выводится только
<div id="app" data-v-app=""><!----></div>
в main.js
import { createApp } from 'vue'
import store from '@/store/store'
import vuetify from '@/plugins/vuetify.config'
import '@styles/main.scss'
import HomeView from "@/Views/HomeView.vue";
const app = createApp({
components: {
'component-a': HomeView,
// HomeView
},
data() {
return {}
},
methods: {},
mounted() {
console.log('Mounted');
}
})
.use(store)
.use(vuetify)
.mount('#app')
на странице:
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/dist/assets/main.css">
</head>
<body>
<div id="app">
<div>tesst</div>
<component-a></component-a>
</div>
<script type="module" src="/dist/main.js"></script>
</body>
</html>