javascript - Error compiling template: Component template requires a root element, rather than just text in vue.js with laravel
one text
Solution:
Vue.component('example-component', {
template: `<div id="app">This is the homepage</div>`
})
You have to wrap the template content in a parent element, such as <div> </div>
. If not Vue will show an error, explaining that every component must have a single root element.