Files
ComfyUI_frontend/src/views/layouts/LayoutDefault.vue
Simula_r 631d484901 refactor: workspaces DDD (#8921)
## Summary

Refactor: workspaces related functionality into DDD structure.

Note: this is the 1st PR of 2 more refactoring.

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-8921-refactor-DDD-3096d73d3650812bb7f6eb955f042663)
by [Unito](https://www.unito.io)
2026-02-17 12:28:47 -08:00

16 lines
354 B
Vue

<template>
<WorkspaceAuthGate>
<main class="relative h-full w-full overflow-hidden">
<router-view />
</main>
</WorkspaceAuthGate>
</template>
<script setup lang="ts">
import { useFavicon } from '@vueuse/core'
import WorkspaceAuthGate from '@/platform/workspace/auth/WorkspaceAuthGate.vue'
useFavicon('/assets/favicon.ico')
</script>