feat: 插件沙箱 with(fakeGlobal) 修复 Z_SYNC_FLUSH 未定义 + 播放列表抽屉 + 日志系统 + 侧边栏日志入口

This commit is contained in:
auto-bot
2026-06-14 00:29:58 +00:00
parent 4434c255a2
commit 9062a4fe5b
9 changed files with 957 additions and 30 deletions

View File

@@ -147,7 +147,7 @@ const next = () => playerStore.next();
const prev = () => playerStore.prev();
const toggleMode = () => playerStore.toggleMode();
const toggleLike = () => { isLiked.value = !isLiked.value; };
const togglePlaylist = () => { /* TODO: Toggle Playlist Drawer */ };
const togglePlaylist = () => playerStore.togglePlaylist();
const onSeek = (e: Event) => {
const val = Number((e.target as HTMLInputElement).value);