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
<template>
  <section>
    <base-card>
      <template #header>
        <h3>{{ fullName }}</h3>
        <base-badge :type="role" :caption="role.toUpperCase()"></base-badge>
      </template>
      <template #default>
        <p>{{ infoText }}</p>
      </template>
    </base-card>
  </section>
</template>
 
<script>
export default {
  props: ['fullName', 'infoText', 'role'],
};
</script>