mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-12 08:30:08 +00:00
## 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)
16 lines
354 B
Vue
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>
|