This commit is contained in:
2023-06-25 11:04:07 +08:00
parent f89d0ce7fb
commit 91b606708e
9 changed files with 22 additions and 12 deletions

View File

@@ -4,5 +4,5 @@ import { Code } from "~/utils/types"
export const code = reactive<Code>({
value: "",
language: storage.get(STORAGE_KEY.LANGUAGE) || "C",
language: storage.get(STORAGE_KEY.LANGUAGE) || "Python3",
})