| | |
| | | <template> |
| | | <section> |
| | | <base-card> |
| | | <template v-slot:header> |
| | | <h2>Available Badges</h2> |
| | | </template> |
| | | <template v-slot:default> |
| | | <ul> |
| | | <li> |
| | | <base-badge type="admin" caption="ADMIN"></base-badge> |
| | |
| | | <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; |
| | |
| | | <template> |
| | | <div> |
| | | <header> |
| | | <slot name="header"></slot> |
| | | </header> |
| | | <slot></slot> |
| | | </div> |
| | | </template> |
| | |
| | | <template> |
| | | <section> |
| | | <base-card> |
| | | <header> |
| | | <template v-slot:header> |
| | | <h3>{{ fullName }}</h3> |
| | | <base-badge :type="role" :caption="role.toUpperCase()"></base-badge> |
| | | </header> |
| | | </template> |
| | | <template v-slot:default> |
| | | <p>{{ infoText }}</p> |
| | | </template> |
| | | </base-card> |
| | | </section> |
| | | </template> |
| | |
| | | </script> |
| | | |
| | | <style scoped> |
| | | |
| | | section header { |
| | | display: flex; |
| | | justify-content: space-between; |