feat: 优化搜索

This commit is contained in:
alger
2024-09-12 17:28:51 +08:00
parent 0c156e2708
commit 791121ae06
3 changed files with 31 additions and 29 deletions
+4
View File
@@ -18,6 +18,8 @@ interface State {
setData: any;
lyric: any;
isMobile: boolean;
searchValue: string;
searchType: number;
}
const state: State = {
@@ -32,6 +34,8 @@ const state: State = {
setData: null,
lyric: {},
isMobile: false,
searchValue: '',
searchType: 1,
};
const windowData = window as any;