[Vuejs]-Trying to display a component template

0👍

You have to use all-people component inside the div with id = app, like following:

<div class="container">
    <div id="app">
       <all-people></all-people>
    </div>
</div>

You can get more details on how to use in the docs.

Leave a comment