feat: 移除下载页面的调试日志

This commit is contained in:
2025-06-10 21:01:56 +08:00
parent 66425218aa
commit a93b6048a4

View File

@@ -95,10 +95,6 @@ const consoleDownloadUrl = computed(() => {
const { data: faqContent } = await useAsyncData("/download/faq", () => { const { data: faqContent } = await useAsyncData("/download/faq", () => {
return queryCollection("download").path("/download/faq").first(); return queryCollection("download").path("/download/faq").first();
}); });
onMounted(() => {
console.log(faqContent.value);
});
</script> </script>
<template> <template>