🐞 fix: 修复在歌词界面添加到歌单抽屉被遮挡问题

This commit is contained in:
algerkong
2025-06-28 17:46:24 +08:00
parent 749a2a69c4
commit 2f339b1373
3 changed files with 9 additions and 1 deletions
+6 -1
View File
@@ -343,7 +343,12 @@ const playMusicEvent = async () => {
}
};
const musicFullVisible = ref(false);
const musicFullVisible = computed({
get: () => playerStore.musicFull,
set: (value) => {
playerStore.setMusicFull(value);
}
})
// 设置musicFull
const setMusicFull = () => {