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 | } | |
24 | </style> |