mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-08 17:10:07 +00:00
18 lines
442 B
Vue
18 lines
442 B
Vue
<template>
|
|
<div class="flex items-center gap-2">
|
|
<WorkspaceProfilePic
|
|
class="size-6 text-xs"
|
|
:workspace-name="workspaceName"
|
|
/>
|
|
|
|
<span>{{ workspaceName }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import WorkspaceProfilePic from '@/components/common/WorkspaceProfilePic.vue'
|
|
import { useWorkspace } from '@/platform/workspace/composables/useWorkspace'
|
|
|
|
const { workspaceName } = useWorkspace()
|
|
</script>
|