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

17 lines
336 B
Vue
Raw Normal View History

2025-08-01 17:52:35 +08:00
<script lang="ts" setup>
2026-01-31 00:00:46 +08:00
import DatePicker from "@/components/date-picker/DatePicker.vue";
2026-01-31 02:54:00 +08:00
import NavBar from "@/components/menu/NavBar.vue";
2025-08-01 17:52:35 +08:00
</script>
<template>
2026-01-31 02:54:00 +08:00
<div>
<NavBar />
<div class="mt-4">
<div>路由系统加载进度100%</div>
<DatePicker />
2025-08-01 17:52:35 +08:00
</div>
</div>
</template>
2026-01-30 23:22:54 +08:00
<style scoped></style>