feat: icons, user popus, and polish
user popus are WEIRD, and i need help with layering
This commit is contained in:
parent
8c92a7ad0c
commit
692dd6d1c7
7 changed files with 196 additions and 13 deletions
20
components/UserArea.vue
Normal file
20
components/UserArea.vue
Normal file
|
@ -0,0 +1,20 @@
|
|||
<template>
|
||||
<div id="user-panel">
|
||||
HELLO!!
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import type { UserResponse } from '~/types/interfaces';
|
||||
|
||||
const props = defineProps<{
|
||||
user: UserResponse,
|
||||
}>();
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
#user-panel {
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue