This commit is contained in:
kunfei
2023-07-25 21:35:32 +08:00
parent 29a5fe1406
commit 3d5fc133ec
12 changed files with 59 additions and 38 deletions
+2 -2
View File
@@ -31,7 +31,7 @@ watch(
() => store.isDebuging,
() => {
if (store.isDebuging) startDebug();
}
},
);
const appendDebugMsg = (msg) => {
@@ -46,7 +46,7 @@ const startDebug = async () => {
store.currentSourceUrl,
searchKey.value || store.searchKey,
appendDebugMsg,
store.debugFinish
store.debugFinish,
);
};