<!-- When in HTML files that are used as a Vue template
never do self-closing tags on components otherwise
the first component will "eat" every sibiling after it. -->
<div id="app">
<div class="wrapper">
<first-component/>
<!-- The second component won’t render -->
<second-component/>
</div>
<div class="wrapper">
<!-- Always add the closing tags -->
<first-component></first-component>
<second-component></second-component>
</div>
<a href="https://stackoverflow.com/a/3558200">Explanation</a>
<p>NOTE: This is not required in templates inside <kbd>.vue</kbd> files.</p>
</div>