feat: implement user and admin login flow

This commit is contained in:
2025-06-18 16:03:28 +08:00
parent 0d98d4f0c2
commit 6652953b1a
5 changed files with 88 additions and 2 deletions

9
pages/admin.vue Normal file
View File

@ -0,0 +1,9 @@
<template>
<div class="p-8">
<h1 class="text-2xl font-bold">后台管理</h1>
<p class="mt-4">欢迎, 管理员!</p>
</div>
</template>
<script setup lang="ts">
</script>