Create minimal DesktopDialogView component

This commit is contained in:
filtered
2025-09-13 23:13:07 +10:00
parent d33da760d0
commit b040bb4aff

View 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>