I know such questions are out there in this site but they do not solve my problem. Hence this question pops up here :
In my Laravel 5.3 and VueJs ap
I think that inside of
"render: h => h(App)" you can use
components: {App},
template: ' '
Then the app.js code will be like:
import router from './router';
import App from '../components/App.vue';
var app = new Vue({
el: '#app',
components: {App},
template: ' ',
router
});
I hope that works.
best regards!