ct/app/pages/index.vue

20 lines
296 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-29 14:45:33 +08:00
</script>
<template>
2025-09-29 18:02:28 +08:00
<view>
<IndexItem1/>
<IndexItem2/>
<IndexItem3/>
<IndexItem4/>
<IndexItem5/>
<news/>
<BottomNavigation/>
</view>
2025-09-29 14:45:33 +08:00
</template>
<style scoped>
</style>