From 930e6befebb88da43ec08db037c7f1ac7282da23 Mon Sep 17 00:00:00 2001 From: lichx Date: Fri, 22 Nov 2024 22:36:51 +0800 Subject: [PATCH] =?UTF-8?q?[bugfix]=20=E7=A7=BB=E9=99=A4=E4=B8=8D=E9=9C=80?= =?UTF-8?q?=E8=A6=81=E7=9A=84=E5=BC=95=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/MachineCodeLayout.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MachineCodeLayout.vue b/src/components/MachineCodeLayout.vue index 444b776..4f50a0f 100644 --- a/src/components/MachineCodeLayout.vue +++ b/src/components/MachineCodeLayout.vue @@ -2,7 +2,7 @@ import "../style.css" import {inject, Ref, ref} from "vue"; import {Compiler} from "../utils/Complier.ts"; -import {Runner, RunnerState} from "../utils/Runner.ts"; +import {Runner} from "../utils/Runner.ts"; let compiler: Compiler = inject("compiler") as Compiler; let runner: Runner = inject("runner") as Runner;