1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| <template>
| <header>
| <h1>{{ title }}</h1>
| </header>
| </template>
|
| <script>
| export default {
| props: ['title'],
| };
| </script>
|
| <style scoped>
| header {
| width: 100%;
| height: 5rem;
| background-color: #640032;
| display: flex;
| justify-content: center;
| align-items: center;
| }
|
| header h1 {
| color: white;
| margin: 0;
| }
| </style>
|
|