1 <template> 2 <div class="about"> 3 <h1>This is an about page</h1> 4 </div> 5 </template> 6 7 <style> 8 @media (min-width: 1024px) { 9 .about { 10 min-height: 100vh; 11 display: flex; 12 align-items: center; 13 } 14 } 15 </style>