Files
template-vue-hucky/src/pages/index.vue

19 lines
387 B
Vue
Raw Normal View History

2025-08-01 17:52:35 +08:00
<script lang="ts" setup>
// Home page component
</script>
<template>
<div class="hero min-h-screen bg-base-200">
<div class="hero-content text-center">
<div class="max-w-md">
2026-01-29 20:57:04 +08:00
<h1 class="text-5xl font-bold">Hucky</h1>
<p class="py-6">自动路由系统已加载</p>
2025-08-01 17:52:35 +08:00
</div>
</div>
</div>
</template>
<style scoped>
/* Component styles */
</style>