Add basic user profiles.
This commit is contained in:
parent
83a376a254
commit
fcccb9df68
5 changed files with 38 additions and 2 deletions
14
src/components/user_profile/user_profile.vue
Normal file
14
src/components/user_profile/user_profile.vue
Normal file
|
@ -0,0 +1,14 @@
|
|||
<template>
|
||||
<div class="user-profile panel panel-default">
|
||||
<user-card-content :user="user"></user-card-content>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script src="./user_profile.js"></script>
|
||||
|
||||
<style>
|
||||
.user-profile {
|
||||
flex: 2;
|
||||
flex-basis: 500px;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue