2016-11-30 22:32:22 +00:00
|
|
|
<template>
|
2017-06-12 14:20:02 +00:00
|
|
|
<div>
|
|
|
|
<div v-if="user" class="user-profile panel panel-default base00-background">
|
2017-08-21 17:25:01 +00:00
|
|
|
<user-card-content :user="user" :switcher="true"></user-card-content>
|
2017-06-12 14:20:02 +00:00
|
|
|
</div>
|
2017-06-12 14:34:41 +00:00
|
|
|
<Timeline :title="'User Timeline'" v-bind:timeline="timeline" v-bind:timeline-name="'user'" :user-id="userId"/>
|
2016-11-30 22:32:22 +00:00
|
|
|
</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;
|
2017-08-23 17:33:20 +00:00
|
|
|
padding-bottom: 10px;
|
|
|
|
border-radius: 10px;
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
2016-12-08 08:09:21 +00:00
|
|
|
|
|
|
|
</style>
|