目录结构调整

This commit is contained in:
fofolee
2024-12-20 13:42:54 +08:00
parent b191cca77e
commit 129375ff20
13 changed files with 228 additions and 255 deletions

View File

@@ -73,13 +73,13 @@
<script>
import { defineAsyncComponent } from "vue";
import CommandSideBar from "components/CommandSideBar";
import CommandSideBar from "components/editor/CommandSideBar";
import CommandLanguageBar from "components/editor/CommandLanguageBar";
import EditorTools from "components/editor/EditorTools";
import CommandRunResult from "components/CommandRunResult";
import CommandLanguageBar from "components/CommandLanguageBar";
import EditorTools from "components/EditorTools";
// Performance Scripting > 500ms
const MonacoEditor = defineAsyncComponent(() =>
import("components/MonacoEditor")
import("components/editor/MonacoEditor")
);
export default {