LiteyukiBot/docs/.vitepress/theme/index.ts

18 lines
476 B
TypeScript
Raw Normal View History

import DefaultTheme from 'vitepress/theme'
import './liteyuki.css'
2024-09-01 10:25:37 +00:00
import StatsBar from '../../components/StatsBar.vue'
2024-09-01 14:14:09 +00:00
import PluginStore from '../../components/PluginStore.vue'
import ResStore from '../../components/ResStore.vue'
2024-09-01 10:25:37 +00:00
2024-09-01 12:39:51 +00:00
2024-09-01 10:25:37 +00:00
export default {
extends: DefaultTheme,
2024-09-01 14:00:17 +00:00
enhanceApp({ app }) {
2024-09-01 14:14:09 +00:00
app.component('StatsBar', StatsBar);
app.component('PluginStore', PluginStore);
app.component('ResStore', ResStore);
2024-09-01 14:00:17 +00:00
},
2024-09-01 12:39:51 +00:00
Layout: StatsBar
}