diff --git a/docs/.vitepress/theme/index.ts b/docs/.vitepress/theme/index.ts new file mode 100644 index 0000000..bd12cba --- /dev/null +++ b/docs/.vitepress/theme/index.ts @@ -0,0 +1,13 @@ +// https://vitepress.dev/guide/custom-theme +import { h } from 'vue' +import Theme from 'vitepress/theme' +import './style.css' +import MyLayout from "./MyLayout.vue"; + +export default { + ...Theme, + Layout: MyLayout, + enhanceApp({ app, router, siteData }) { + // ... + } +}