mirror of
https://github.com/ZiuChen/ZiuChen.github.io.git
synced 2025-08-17 14:59:34 +08:00
12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
import DefaultTheme from 'vitepress/theme'
|
|
import Title from '../components/Title.vue'
|
|
|
|
export default {
|
|
...DefaultTheme,
|
|
enhanceApp(ctx) {
|
|
DefaultTheme.enhanceApp(ctx)
|
|
const { app } = ctx
|
|
app.component('Title', Title)
|
|
}
|
|
}
|