添加调试模块

This commit is contained in:
2024-12-22 02:06:54 +08:00
parent b89cef5b7c
commit c9bcd42ada
4 changed files with 46 additions and 3 deletions

View File

@@ -19,12 +19,22 @@
>
<Query />
</n-modal>
<n-modal
v-model:show="debug"
preset="card"
style="width: 700px"
:mask-closable="false"
title="可视化调试(测试版)"
>
<Debug />
</n-modal>
</template>
<script lang="ts" setup>
import { useMagicKeys, whenever } from "@vueuse/core"
import { ref } from "vue"
import { run } from "../composables/code"
import { debug, run } from "../composables/code"
import Content from "./Content.vue"
import Debug from "./Debug.vue"
import File from "./File.vue"
import Header from "./Header.vue"
import Query from "./Query.vue"