There is a block:
<div id="main"> <div id="first_block"> <h1>Lorem ipsum dolor sit amet.</h1> <p>Lorem ipsum dolor sit amet consectetur.</p> </div> <div id="second_block"> <span>Lorem ipsum dolor sit amet consectetur adipisicing.</span> </div> </div> I'm starting to learn vue.js and I want to rewrite this block as a component, inside which there are more components. That is, the block with id = main is a component within which there are two components (id = first_block, id = second_block). At the same time, there are still components inside each of these two blocks (span, h1, p). How to implement a component inside a component?