mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-05 07:30:11 +00:00
### Summary Complete redesign of Desktop app installer, implementing the new app startup progress system and error reporting.
12 lines
304 B
Vue
12 lines
304 B
Vue
<template>
|
|
<BaseViewTemplate dark>
|
|
<StartupDisplay :title="$t('desktopStart.initialising')" />
|
|
</BaseViewTemplate>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import StartupDisplay from '@/components/common/StartupDisplay.vue'
|
|
|
|
import BaseViewTemplate from './templates/BaseViewTemplate.vue'
|
|
</script>
|