mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 22:59:14 +00:00
Create minimal DesktopDialogView component
This commit is contained in:
19
src/views/DesktopDialogView.vue
Normal file
19
src/views/DesktopDialogView.vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user