diff --git a/components/app/windows/hotnews.vue b/components/app/windows/hotnews.vue index 0e573bb..3db19f7 100644 --- a/components/app/windows/hotnews.vue +++ b/components/app/windows/hotnews.vue @@ -6,13 +6,16 @@ import Button from "~/components/ui/button/Button.vue"; const pending = ref(); try { - const { data, pending: isPending } = await useFetch("/api/rss/google"); + const { data, pending } = await useFetch("/api/rss/google"); ffeed.value = data.value; } catch (error) { console.error("Error:", error); }