Cockatrice/webclientvue/src/pages/IndexPage.vue
2025-06-14 16:52:23 -04:00

9 lines
239 B
Vue

<template>
<q-page class="row items-center justify-evenly q-pa-md" style="height: 90vh; width: 100vw">
<LoginDialog />
</q-page>
</template>
<script setup lang="ts">
import LoginDialog from 'components/LoginDialog.vue';
</script>