You should render the main component :
var vue = new Vue({
el: '#app',
render: h => h(App)
});
Where App is your main VueJS component
They expect to have the webpage already rendered so we need to use the render property
You should render the main component :
var vue = new Vue({
el: '#app',
render: h => h(App)
});
Where App is your main VueJS component
They expect to have the webpage already rendered so we need to use the render property