commit | author | age | ||
4f1007 | 1 | <template> |
CM | 2 | <section> |
3 | <base-card> | |
4 | <template #header> | |
5 | <h3>{{ fullName }}</h3> | |
6 | <base-badge :type="role" :caption="role.toUpperCase()"></base-badge> | |
7 | </template> | |
8 | <template #default> | |
9 | <p>{{ infoText }}</p> | |
10 | </template> | |
11 | </base-card> | |
12 | </section> | |
13 | </template> | |
14 | ||
15 | <script> | |
16 | export default { | |
17 | props: ['fullName', 'infoText', 'role'], | |
18 | }; | |
19 | </script> |