dify_admin/web/src/views/Login/index.vue
xh.xin 96480a27a9 初始化项目仓库,包含基础结构和开发计划
1. 添加README说明项目结构
2. 配置Python和Node.js的.gitignore
3. 包含认证模块和账号管理的前后端基础代码
4. 开发计划文档记录当前阶段任务
2025-05-02 18:33:06 +08:00

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>