diff --git a/components/index/TopBar.vue b/components/index/TopBar.vue index 680418c..f63bab7 100644 --- a/components/index/TopBar.vue +++ b/components/index/TopBar.vue @@ -6,7 +6,10 @@ let route = useRoute() // console.log(key, keyPath) // } -const HotArray = await $fetch("https://data.zziyu.cn/hot/webs") +const HotArray = ref([]) +$fetch("https://data.zziyu.cn/hot/webs").then(data=>{ + HotArray.value=data as any +}) // console.log(HotArray)