2023-09-02 05:00:29 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
|
|
const getWebArr:string[] = await $fetch("https://data.zziyu.cn/hot/webs")
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-09-02 14:40:18 +00:00
|
|
|
<Title>数据收集</Title>
|
2023-09-02 05:12:21 +00:00
|
|
|
<div style="display: flex;align-items: center;justify-content: center;flex-direction: column">
|
2023-09-02 15:15:31 +00:00
|
|
|
<DataTimesTop v-for="(item,index) in getWebArr" :fromWeb="item" :limit="10" :hours="1" :key="index"></DataTimesTop>
|
2023-09-02 05:00:29 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|