aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_profile/user_profile.vue
blob: 0765b01c0642628db0bb89e8af18b44cddf2e8a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <div>
    <div v-if="user" class="user-profile panel panel-default base00-background">
      <user-card-content :user="user"></user-card-content>
    </div>
    <Timeline :title="'User Timeline'" v-bind:timeline="timeline" v-bind:timeline-name="'user'"/>
  </div>
</template>

<script src="./user_profile.js"></script>

<style lang="scss">

.user-profile {
  flex: 2;
  flex-basis: 500px;
}

</style>