Cristiano Magro
2025-01-05 de01bc78e9f6713d339566c4c87d5f888c16e3b8
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
28
29
30
<template>
    <div>
        <header>
            <slot name="header"></slot>
        </header>
        <slot></slot>
    </div>
</template>
 
<script>
export default {
 
}
</script>
 
<style scoped>
div {
  margin: 2rem auto;
  max-width: 30rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
  padding: 1rem;
}
 
section header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
</style>