🦄 refactor: 适配 web移动端 改造

This commit is contained in:
alger
2024-05-23 17:12:35 +08:00
parent a2af0f3904
commit c09707867b
19 changed files with 265 additions and 79 deletions
+2
View File
@@ -17,6 +17,7 @@ interface State {
playListIndex: number;
setData: any;
lyric: any;
isMobile: boolean;
}
const state: State = {
@@ -30,6 +31,7 @@ const state: State = {
playListIndex: 0,
setData: null,
lyric: {},
isMobile: false,
};
const windowData = window as any;