This commit is contained in:
2026-03-27 20:40:51 +08:00
parent af0a879a17
commit a1cec2bc34
130 changed files with 756 additions and 294 deletions

View File

@@ -26,7 +26,7 @@ async function handleSubmit() {
<template>
<div class="min-h-screen flex items-center justify-center bg-gradient-to-br from-background to-muted p-4">
<UiCard class="w-full max-w-md">
<UiCard class="w-full max-w-lg">
<UiCardHeader class="space-y-1 text-center">
<div class="flex justify-center mb-4">
<div class="size-12 rounded-xl bg-primary flex items-center justify-center">
@@ -93,5 +93,5 @@ async function handleSubmit() {
<route lang="yaml">
meta:
layout: blank
layout: false
</route>

View File

@@ -1,19 +1,14 @@
<script setup lang="ts">
import { useRouter } from 'vue-router'
import Loading from '@/components/loading.vue'
const router = useRouter()
router.push({ name: '/monisuo/dashboard' })
// 首页仅作为重定向入口,由 route block 的 redirect 配置处理
</script>
<template>
<div class="flex items-center justify-center w-screen h-screen">
<Loading />
</div>
<div />
</template>
<route lang="yaml">
meta:
layout: false
redirect:
name: /monisuo/dashboard
</route>