mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-01 19:51:54 +00:00
feat: new settings
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<template>
|
||||
<div class="flex items-center gap-2">
|
||||
<UserAvatar class="size-6" :photo-url="userPhotoUrl" />
|
||||
|
||||
<span>{{ workspaceName ?? 'Personal' }}</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import UserAvatar from '@/components/common/UserAvatar.vue'
|
||||
import { useCurrentUser } from '@/composables/auth/useCurrentUser'
|
||||
import { useWorkspace } from '@/platform/workspace/composables/useWorkspace'
|
||||
|
||||
const { userPhotoUrl } = useCurrentUser()
|
||||
const { workspaceName } = useWorkspace()
|
||||
</script>
|
||||
Reference in New Issue
Block a user