mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 22:59:14 +00:00
20 lines
299 B
Vue
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>
|