mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 06:27:23 +08:00
snowykami
72e71124b8
Some checks failed
Deploy VitePress site to Pages / build (push) Failing after 1m14s
18 lines
477 B
TypeScript
18 lines
477 B
TypeScript
import DefaultTheme from 'vitepress/theme'
|
|
import './liteyuki.scss'
|
|
|
|
import StatsBar from '../../components/StatsBar.vue'
|
|
import PluginStore from '../../components/PluginStore.vue'
|
|
import ResStore from '../../components/ResStore.vue'
|
|
|
|
|
|
|
|
export default {
|
|
extends: DefaultTheme,
|
|
enhanceApp({ app }) {
|
|
app.component('StatsBar', StatsBar);
|
|
app.component('PluginStore', PluginStore);
|
|
app.component('ResStore', ResStore);
|
|
},
|
|
Layout: StatsBar
|
|
} |