FPGA_WebLab/src/views/LoginView.vue

14 lines
249 B
Vue

<template>
<main>
<div class="flex items-center justify-center min-h-screen">
<LoginCard />
</div>
</main>
</template>
<script setup lang="ts">
import LoginCard from "@/components/LoginCard.vue";
</script>
<style scoped></style>