Cristiano Magro
2025-01-06 eb387dbd90a2a891ee5ee4458e32cccb460fd9b1
commit | author | age
4f1007 1 <template>
CM 2   <header>
3     <h1>More on Vue Components</h1>
4   </header>
5 </template>
6
7 <style scoped>
8   header {
9     width: 100%;
10     height: 5rem;
11     display: flex;
12     justify-content: center;
13     align-items: center;
14     background-color: #14005e;
15   }
16
17   header h1 {
18     color: white;
19     margin: 0;
20   }
21 </style>