feat(frontend): 添加前端页面

This commit is contained in:
2977094657
2025-07-25 20:21:26 +08:00
parent 0b12e31c96
commit 540a0fd823
21 changed files with 15094 additions and 13 deletions

18
frontend/app.vue Normal file
View File

@@ -0,0 +1,18 @@
<template>
<div class="min-h-screen bg-gradient-to-br from-green-50 via-emerald-50 to-green-100">
<NuxtPage />
</div>
</template>
<style>
/* 页面过渡动画 - 渐显渐隐效果 */
.page-enter-active,
.page-leave-active {
transition: opacity 0.3s ease;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
}
</style>