2016-11-30 22:32:22 +00:00
|
|
|
<template>
|
2017-06-12 14:00:46 +00:00
|
|
|
<div v-if="user" class="user-profile panel panel-default base00-background">
|
2016-11-30 22:32:22 +00:00
|
|
|
<user-card-content :user="user"></user-card-content>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_profile.js"></script>
|
2016-12-08 08:09:21 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
2017-02-22 21:08:14 +00:00
|
|
|
.user-profile {
|
|
|
|
flex: 2;
|
|
|
|
flex-basis: 500px;
|
|
|
|
}
|
2016-12-08 08:09:21 +00:00
|
|
|
|
|
|
|
</style>
|