Cristiano Magro
2025-01-05 30949bb4a4b22fef5119f04c3e3276c42aaab085
commit | author | age
ff51ab 1 <template>
CM 2   <section>
394e8d 3     <base-card>
30949b 4       <template v-slot:header>
394e8d 5         <h3>{{ fullName }}</h3>
CM 6         <base-badge :type="role" :caption="role.toUpperCase()"></base-badge>
30949b 7       </template>
CM 8       <template v-slot:default>
9         <p>{{ infoText }}</p>
10       </template>
394e8d 11     </base-card>
ff51ab 12   </section>
CM 13 </template>
14
15 <script>
16 export default {
17   props: ['fullName', 'infoText', 'role'],
18 };
19 </script>
20
ac100d 21 <style scoped>
CM 22 section header {
ff51ab 23   display: flex;
CM 24   justify-content: space-between;
25   align-items: center;
26 }
27 </style>