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

19 lines
391 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">
<h1 class="text-5xl font-bold">首页</h1>
<p class="py-6">欢迎使用自动路由系统</p>
</div>
</div>
</div>
</template>
<style scoped>
/* Component styles */
</style>