ct/app/pages/index.vue
2025-09-30 09:23:31 +08:00

21 lines
359 B
Vue

<script lang="ts" setup>
import BottomNavigation from "~/components/BottomNavigation.vue";
import DevelopNews from "~/components/DevelopNews.vue";
</script>
<template>
<view>
<IndexItem1/>
<IndexItem2/>
<IndexItem3/>
<IndexItem4/>
<IndexItem5/>
<DevelopNews/>
<BottomNavigation/>
</view>
</template>
<style scoped>
</style>