We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6ff4a8 commit f902955Copy full SHA for f902955
2 files changed
electron/main/ipc/ipc-cache.ts
@@ -54,7 +54,7 @@ const initCacheIpc = (): void => {
54
// 读取指定缓存文件
55
ipcMain.handle(
56
"cache-get",
57
- (_event, type: CacheResourceType, key: string): Promise<CacheIpcResult<Buffer>> => {
+ (_event, type: CacheResourceType, key: string): Promise<CacheIpcResult<Buffer | null>> => {
58
return withErrorCatch(async () => {
59
return await cacheService.get(type, key);
60
});
src/components/Layout/Menu.vue
@@ -342,7 +342,6 @@ const checkMenuItem = () => {
342
menuActiveKey.value = routerName;
343
break;
344
}
345
- console.log(menuActiveKey.value);
346
};
347
348
// 开启心动模式
0 commit comments