This commit is contained in:
camera-2018
2023-04-14 01:17:54 +08:00
commit 5b952f4fd3
9 changed files with 2229 additions and 0 deletions

16
.vitepress/theme/index.js Normal file
View File

@@ -0,0 +1,16 @@
// https://vitepress.dev/guide/custom-theme
import { h } from 'vue'
import Theme from 'vitepress/theme'
import './style.css'
export default {
...Theme,
Layout: () => {
return h(Theme.Layout, null, {
// https://vitepress.dev/guide/extending-default-theme#layout-slots
})
},
enhanceApp({ app, router, siteData }) {
// ...
}
}