21 lines
359 B
Vue
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> |