yandere_fe/src/components/user_profile/user_profile.vue

22 lines
496 B
Vue
Raw Normal View History

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