mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-19 06:20:10 +00:00
12 lines
222 B
Vue
12 lines
222 B
Vue
<template>
|
|
<main class="w-full h-full overflow-hidden relative">
|
|
<router-view />
|
|
</main>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useFavicon } from '@vueuse/core'
|
|
|
|
useFavicon('/assets/favicon.ico')
|
|
</script>
|