2016-12-01 09:32:22 +11:00
|
|
|
<template>
|
2017-06-13 00:20:02 +10:00
|
|
|
<div>
|
|
|
|
<div v-if="user" class="user-profile panel panel-default base00-background">
|
|
|
|
<user-card-content :user="user"></user-card-content>
|
|
|
|
</div>
|
2017-06-13 00:34:41 +10:00
|
|
|
<Timeline :title="'User Timeline'" v-bind:timeline="timeline" v-bind:timeline-name="'user'" :user-id="userId"/>
|
2016-12-01 09:32:22 +11:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_profile.js"></script>
|
2016-12-08 19:09:21 +11:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
2017-02-23 08:08:14 +11:00
|
|
|
.user-profile {
|
|
|
|
flex: 2;
|
|
|
|
flex-basis: 500px;
|
|
|
|
}
|
2016-12-08 19:09:21 +11:00
|
|
|
|
|
|
|
</style>
|