ct/app/pages/index.vue

21 lines
359 B
Vue
Raw Normal View History

2025-09-29 14:45:33 +08:00
<script lang="ts" setup>
2025-09-29 18:02:28 +08:00
import BottomNavigation from "~/components/BottomNavigation.vue";
2025-09-30 09:23:31 +08:00
import DevelopNews from "~/components/DevelopNews.vue";
2025-09-29 14:45:33 +08:00
</script>
<template>
2025-09-29 18:02:28 +08:00
<view>
<IndexItem1/>
<IndexItem2/>
<IndexItem3/>
<IndexItem4/>
<IndexItem5/>
2025-09-30 09:23:31 +08:00
<DevelopNews/>
2025-09-29 18:02:28 +08:00
<BottomNavigation/>
</view>
2025-09-29 14:45:33 +08:00
</template>
<style scoped>
</style>