mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-13 15:37:25 +08:00
13 lines
297 B
TypeScript
13 lines
297 B
TypeScript
import type {Theme} from "vitepress";
|
|
|
|
import DefaultTheme from 'vitepress/theme'
|
|
import './liteyuki.css'
|
|
|
|
import StatsBar from '../../components/StatsBar.vue'
|
|
|
|
export default {
|
|
extends: DefaultTheme,
|
|
enhanceApp({app}) {
|
|
app.component('StatsBar', StatsBar)
|
|
},
|
|
} satisfies Theme |