Just starting out with Vue.
I'm looking to create a component that encompasses the entire page except for the header and footer
Vue.component('main-block', {template: `
<section id="first-block">...</section>
<section id="second-block">...</section>
<section id="third-block">...</section>`})
After adding
<main-page></main-page>
within the #app block, only the first section is displayed. What could be causing this issue?