2025-08-01 17:52:35 +08:00
|
|
|
<script lang="ts" setup>
|
2026-01-30 23:22:54 +08:00
|
|
|
import ChangeThemeDropdownButton from "@/components/button/ChangeThemeDropdownButton.vue";
|
2026-01-31 00:00:46 +08:00
|
|
|
import DatePicker from "@/components/date-picker/DatePicker.vue";
|
2026-01-30 23:22:54 +08:00
|
|
|
import { useGlobalThemeHook } from "@/hooks/globalThemeHook";
|
|
|
|
|
|
|
|
|
|
const { curGlobalTheme } = useGlobalThemeHook();
|
2025-08-01 17:52:35 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2026-01-30 23:22:54 +08:00
|
|
|
<div class="hero min-h-screen" :data-theme="curGlobalTheme">
|
2025-08-01 17:52:35 +08:00
|
|
|
<div class="hero-content text-center">
|
|
|
|
|
<div class="max-w-md">
|
2026-01-31 00:08:52 +08:00
|
|
|
<h1 class="text-5xl font-bold pb-6">Hucky</h1>
|
|
|
|
|
<p class="pb-6">自动路由系统已加载</p>
|
|
|
|
|
<ChangeThemeDropdownButton class="pb-6" />
|
2026-01-31 00:00:46 +08:00
|
|
|
<DatePicker />
|
2025-08-01 17:52:35 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
2026-01-30 23:22:54 +08:00
|
|
|
<style scoped></style>
|