[Vuejs]-Having Problem in implementng vue.js codes in my laravel project

0👍

you forgot to add id app in body tag

<div id='app'></div>

-1👍

You need to have id=’app’ in main wrapper. Your div wrappered by section tag and div with class container

-1👍

Try this

<div id="app">
   <example-componen></example-componen>
</div>

Leave a comment