From 873c2fbaecd27a74d9b78f777aa2026f66f13b05 Mon Sep 17 00:00:00 2001 From: yuetsh <517252939@qq.com> Date: Sun, 22 Dec 2024 18:48:47 +0800 Subject: [PATCH] update --- src/desktop/Content.vue | 12 ++++++ src/desktop/Debug.vue | 85 +++++++++++++++++++++++++++++------------ src/desktop/Header.vue | 9 +---- src/desktop/Query.vue | 2 +- src/mobile/Helper.vue | 7 +++- 5 files changed, 80 insertions(+), 35 deletions(-) diff --git a/src/desktop/Content.vue b/src/desktop/Content.vue index 417d9d0..c584f89 100644 --- a/src/desktop/Content.vue +++ b/src/desktop/Content.vue @@ -7,6 +7,7 @@ import { analyse, analyzeError, showAnalyse } from "../composables/analyse" import { clearInput, code, + debug, input, output, reset, @@ -22,6 +23,9 @@ function copy() { copyTextToClipboard(code.value) message.success("已经复制好了") } +function handleDebug() { + debug.value = true +}