From 8da7fdabe553e28b11ef49750713da8c87204862 Mon Sep 17 00:00:00 2001 From: alger Date: Thu, 28 Dec 2023 11:40:29 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E6=90=9C=E7=B4=A2=E7=9A=84=E6=92=AD=E6=94=BE=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/search/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/search/index.vue b/src/views/search/index.vue index 941c664..64f3055 100644 --- a/src/views/search/index.vue +++ b/src/views/search/index.vue @@ -139,7 +139,7 @@ watch( const store = useStore() const handlePlay = (item: any) => { - const tracks = searchDetail.value?.result.songs || [] + const tracks = searchDetail.value?.songs || [] const musicIndex = (tracks.findIndex((music: any) => music.id == item.id) || 0) store.commit('setPlayList', tracks) }