DataFront/pages/data/all.vue

15 lines
385 B
Vue
Raw Normal View History

<script setup lang="ts">
const getWebArr:string[] = await $fetch("https://data.zziyu.cn/hot/webs")
</script>
<template>
2023-09-02 05:12:21 +00:00
<div style="display: flex;align-items: center;justify-content: center;flex-direction: column">
<DataTimesTop v-for="(item,index) in getWebArr" :fromWeb="item" :limit="5" :hours="2" :key="index"></DataTimesTop>
</div>
</template>
<style scoped>
</style>