Cristiano Magro
2025-01-05 bae1330af41d5475709da06fdb3f03ff199635b6
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
31
32
33
34
35
<template>
    <div>
        <header v-if="$slots.header">
            <slot name="header">
                <!-- <h2>Default Title </h2> -->
            </slot>
        </header>
        <slot></slot>
    </div>
</template>
 
<script>
export default {
    mounted() {
        console.log(this.$slots);
    }
 
}
</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>