16 lines
		
	
	
		
			416 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			416 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script setup lang="ts">
 | 
						|
 | 
						|
const getWebArr:string[] = await $fetch("https://data.zziyu.cn/hot/webs")
 | 
						|
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <Title>数据收集</Title>
 | 
						|
  <div style="display: flex;align-items: center;justify-content: center;flex-direction: column">
 | 
						|
    <DataTimesTop v-for="(item,index) in getWebArr" :fromWeb="item" :limit="10" :hours="1" :key="index"></DataTimesTop>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<style scoped>
 | 
						|
 | 
						|
</style> |