From 38f37bba084c5ee4a3371b1b0a92465310268f55 Mon Sep 17 00:00:00 2001 From: Astrian Zheng Date: Fri, 6 Jun 2025 10:37:34 +1000 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=A7=BB=E9=99=A4=E6=9C=AA=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E7=9A=84=20props=20=E5=8F=98=E9=87=8F=E5=A3=B0?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复 TypeScript 编译错误 TS6133 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/components/PlayListItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PlayListItem.vue b/src/components/PlayListItem.vue index f526b15..6090b0e 100644 --- a/src/components/PlayListItem.vue +++ b/src/components/PlayListItem.vue @@ -9,7 +9,7 @@ const favourites = useFavourites() const hover = ref(false) -const props = defineProps<{ +defineProps<{ item: QueueItem index: number }>()