commit | author | age | ||
ff51ab | 1 | <template> |
CM | 2 | <section> |
394e8d | 3 | <base-card> |
60df09 | 4 | <template #header> |
394e8d | 5 | <h3>{{ fullName }}</h3> |
CM | 6 | <base-badge :type="role" :caption="role.toUpperCase()"></base-badge> |
30949b | 7 | </template> |
60df09 | 8 | <template #default> |
30949b | 9 | <p>{{ infoText }}</p> |
CM | 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> |