You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
427 B
18 lines
427 B
1 year ago
|
// https://vitepress.dev/guide/custom-theme
|
||
|
import { h } from "vue";
|
||
|
import DefaultTheme from "vitepress/theme";
|
||
|
import "./style.css";
|
||
|
|
||
|
/** @type {import('vitepress').Theme} */
|
||
|
export default {
|
||
|
extends: DefaultTheme,
|
||
|
Layout: () => {
|
||
|
return h(DefaultTheme.Layout, null, {
|
||
|
// https://vitepress.dev/guide/extending-default-theme#layout-slots
|
||
|
});
|
||
|
},
|
||
|
enhanceApp({ app, router, siteData }) {
|
||
|
// ...
|
||
|
},
|
||
|
};
|