This commit is contained in:
@@ -1,5 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<UUser v-if="user" :name="user.name" :description="user.email" :avatar="{ src: user.avatar }" />
|
<UUser
|
||||||
|
v-if="user"
|
||||||
|
:name="user.name"
|
||||||
|
:description="user.email"
|
||||||
|
:avatar="{ src: user.avatar, icon: 'i-lucide-circle-user' }"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<UDashboardGroup>
|
<UDashboardGroup>
|
||||||
<UiSidebar class="min-w-60" />
|
<UiSidebar class="min-w-60" />
|
||||||
|
<UDashboardSearch />
|
||||||
<UDashboardPanel>
|
<UDashboardPanel>
|
||||||
<template #header>
|
<template #header>
|
||||||
<UDashboardNavbar :title="pageName ?? ''">
|
<UDashboardNavbar :title="pageName ?? ''">
|
||||||
<template #right>
|
<template #right>
|
||||||
|
<UDashboardSearchButton />
|
||||||
<UColorModeButton />
|
<UColorModeButton />
|
||||||
</template>
|
</template>
|
||||||
</UDashboardNavbar>
|
</UDashboardNavbar>
|
||||||
|
|||||||
Reference in New Issue
Block a user