mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2025-02-13 16:13:21 +01:00
16 lines
293 B
Vue
16 lines
293 B
Vue
<template>
|
|
<div v-if="user" class="user-profile panel panel-default base00-background">
|
|
<user-card-content :user="user"></user-card-content>
|
|
</div>
|
|
</template>
|
|
|
|
<script src="./user_profile.js"></script>
|
|
|
|
<style lang="scss">
|
|
|
|
.user-profile {
|
|
flex: 2;
|
|
flex-basis: 500px;
|
|
}
|
|
|
|
</style>
|