update vue3.3

web编辑 修正筛选删除导出逻辑
This commit is contained in:
Xwite
2023-05-14 19:36:52 +08:00
parent 152dc4e3b8
commit 5efc367bc6
12 changed files with 130 additions and 100 deletions

View File

@@ -27,9 +27,12 @@ const store = useSourceStore();
const printDebug = ref("");
const searchKey = ref("");
watch(() => store.isDebuging, () => {
if (store.isDebuging) startDebug();
});
watch(
() => store.isDebuging,
() => {
if (store.isDebuging) startDebug();
}
);
const appendDebugMsg = (msg) => {
let debugDom = document.querySelector("#debug-text");