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