From 34c45e0105fd133a877895019c5611030605891a Mon Sep 17 00:00:00 2001 From: alger Date: Sat, 14 Dec 2024 13:15:59 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=83=20docs:=20=E4=BF=AE=E8=AF=A5?= =?UTF-8?q?=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hooks/MusicHook.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hooks/MusicHook.ts b/src/hooks/MusicHook.ts index f28a2fe..f3b56fb 100644 --- a/src/hooks/MusicHook.ts +++ b/src/hooks/MusicHook.ts @@ -132,7 +132,7 @@ export const getLrcIndex = (time: number): number => { return nowIndex.value; }; -// 获取���前播放歌词进度 +// 获取当前播放歌词进度 const currentLrcTiming = computed(() => { const start = lrcTimeArray.value[nowIndex.value] || 0; const end = lrcTimeArray.value[nowIndex.value + 1] || start + 1; @@ -236,7 +236,7 @@ watch( () => lrcArray.value, (newLrcArray) => { if (newLrcArray.length > 0 && isElectron.value) { - // 重新初始��歌词数据 + // 重新初始化歌词数据 initLyricWindow(); // 发送当前状态 sendLyricToWin();