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/BadgeList.vue

37 lines
742 B
Vue

<template>
<section>
<base-card>
<template #header> <h2>Available Badges</h2> </template>
<template #default>
<ul>
<li>
<base-badge type="admin" caption="ADMIN"></base-badge>
</li>
<li>
<base-badge type="author" caption="AUTHOR"></base-badge>
</li>
</ul>
</template>
</base-card>
</section>
</template>
<style scoped>
section h2 {
margin: 0.5rem 0;
color: #3a3a3a;
}
ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
}
li {
margin-right: 1rem;
}
</style>