16 lines
281 B
Vue
16 lines
281 B
Vue
<template>
|
|
<div 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>
|