This commit is contained in:
2026-03-31 15:46:15 +08:00
parent 654724a213
commit 6d79836682
68 changed files with 3076 additions and 4488 deletions
@@ -0,0 +1,12 @@
<script setup>
import AppToast from '@/components/AppToast.vue'
</script>
<template>
<div class="flex min-h-screen items-center justify-center bg-gradient-to-br from-gray-50 to-gray-100 dark:from-dk-base dark:to-dk-card">
<div class="w-full">
<RouterView />
</div>
<AppToast />
</div>
</template>
@@ -0,0 +1,16 @@
<script setup>
import AppHeader from '@/components/AppHeader.vue'
import AppFooter from '@/components/AppFooter.vue'
import AppToast from '@/components/AppToast.vue'
</script>
<template>
<div class="flex min-h-screen flex-col">
<AppHeader />
<main class="flex-1">
<RouterView />
</main>
<AppFooter />
<AppToast />
</div>
</template>