app/docs/.vitepress/theme/index.ts

14 lines
267 B
TypeScript
Raw Normal View History

import DefaultTheme from 'vitepress/theme'
import './liteyuki.css'
2024-09-01 18:25:37 +08:00
import StatsBar from '../../components/StatsBar.vue'
2024-09-01 20:39:51 +08:00
2024-09-01 18:25:37 +08:00
export default {
extends: DefaultTheme,
2024-09-01 22:00:17 +08:00
enhanceApp({ app }) {
app.component('StatsBar', StatsBar)
},
2024-09-01 20:39:51 +08:00
Layout: StatsBar
}