feat: backend add auth method

This commit is contained in:
2025-07-10 19:39:00 +08:00
parent c6c3f1cc41
commit d6167ac286
5 changed files with 235 additions and 51 deletions

View File

@@ -1,16 +1,13 @@
<template>
<header></header>
<main class="relative">
<div class="w-screen h-screen flex items-center justify-center">
<UploadCard />
</div>
</main>
<div class="min-h-screen bg-base-100 container mx-auto p-6 space-y-6">
<ul class="menu bg-base-200 w-56 gap-2 rounded-2xl">
<li><a>Item 1</a></li>
<li><a>Item 2</a></li>
<li><a>Item 3</a></li>
</ul>
</div>
</template>
<script setup lang="ts">
import UploadCard from "@/components/UploadCard.vue";
</script>
<script setup lang="ts"></script>
<style scoped>
@import "../assets/main.css";
</style>
<style scoped></style>