Cristiano Magro
2025-01-05 de01bc78e9f6713d339566c4c87d5f888c16e3b8
commit | author | age
394e8d 1 <template>
CM 2     <div>
30949b 3         <header>
CM 4             <slot name="header"></slot>
5         </header>
394e8d 6         <slot></slot>
CM 7     </div>
8 </template>
9
10 <script>
11 export default {
12
13 }
14 </script>
15
16 <style scoped>
17 div {
18   margin: 2rem auto;
19   max-width: 30rem;
20   border-radius: 12px;
21   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
22   padding: 1rem;
23 }
de01bc 24
CM 25 section header {
26   display: flex;
27   justify-content: space-between;
28   align-items: center;
29 }
394e8d 30 </style>