📝 docs: Add documentation

This commit is contained in:
web@ppanel
2025-12-11 03:29:07 +00:00
parent 50e695a1bb
commit 99e7f6062d
135 changed files with 79115 additions and 8 deletions
+15
View File
@@ -0,0 +1,15 @@
// https://vitepress.dev/guide/custom-theme
import Teek from "vitepress-theme-teek";
import "vitepress-theme-teek/index.css";
import type { Theme } from "vitepress";
import ScalarIframe from "./components/ScalarIframe.vue";
const theme: Theme = {
extends: Teek,
enhanceApp(ctx) {
Teek.enhanceApp?.(ctx);
ctx.app.component("ScalarIframe", ScalarIframe);
},
};
export default theme;