This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-02-06 cmp-adv-01-start.../src/components/UserInfo.vue

24 lines
517 B
Vue

<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 scoped>
export default {
props: ["fullName", "infoText", "role"],
};
</script>