mirror of
https://github.com/Nanaloveyuki/BitLogger.git
synced 2026-07-24 00:42:18 +00:00
18 lines
406 B
TypeScript
18 lines
406 B
TypeScript
import DefaultTheme from 'vitepress/theme'
|
|
import type { Theme } from 'vitepress'
|
|
|
|
import ApiOverview from './components/ApiOverview.vue'
|
|
import HomeDocHub from './components/HomeDocHub.vue'
|
|
|
|
import './custom.css'
|
|
|
|
const theme: Theme = {
|
|
extends: DefaultTheme,
|
|
enhanceApp({ app }) {
|
|
app.component('ApiOverview', ApiOverview)
|
|
app.component('HomeDocHub', HomeDocHub)
|
|
},
|
|
}
|
|
|
|
export default theme
|