fix judge.

This commit is contained in:
2023-12-19 16:02:19 +08:00
parent ea2adbe978
commit 47afc84096
12 changed files with 1126 additions and 441 deletions

View File

@@ -2,13 +2,13 @@ import type { Theme } from "vitepress"
import DefaultTheme from "vitepress/theme"
import BVideo from "./components/BVideo.vue"
import Author from "./components/Author.vue"
// import CodeEditor from "./components/CodeEditor.vue"
import CodeEditor from "./components/CodeEditor.vue"
export default {
extends: DefaultTheme,
async enhanceApp({ app }) {
app.component("bvideo", BVideo)
app.component("author", Author)
// app.component("code-editor", CodeEditor)
app.component("code-editor", CodeEditor)
},
} satisfies Theme