yandere_fe/src/components/user_profile/user_profile.vue

17 lines
281 B
Vue
Raw Normal View History

2016-11-30 14:32:22 -08:00
<template>
2017-01-15 07:26:37 -08:00
<div class="user-profile panel panel-default base00-background">
2016-11-30 14:32:22 -08:00
<user-card-content :user="user"></user-card-content>
</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;
}
2016-12-08 00:09:21 -08:00
</style>