Files
ComfyUI_frontend/src/views/DesktopDialogView.vue
2025-09-15 01:12:41 +10:00

20 lines
299 B
Vue

<template>
<div class="desktop-dialog">
<!-- No content yet -->
</div>
</template>
<script setup lang="ts">
// Empty component for now
</script>
<style scoped>
.desktop-dialog {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
</style>