1. 添加README说明项目结构 2. 配置Python和Node.js的.gitignore 3. 包含认证模块和账号管理的前后端基础代码 4. 开发计划文档记录当前阶段任务
20 lines
325 B
Vue
20 lines
325 B
Vue
<template>
|
|
<div class="login-container">
|
|
<LoginForm />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import LoginForm from './components/LoginForm.vue'
|
|
</script>
|
|
|
|
<style scoped>
|
|
.login-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
</style>
|