mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
23 lines
921 B
TypeScript
23 lines
921 B
TypeScript
import { Theme } from 'vitepress'
|
|
import DefaultTheme from 'vitepress/theme'
|
|
import UISubjectToChangeNote from '../components/UISubjectToChangeNote.vue'
|
|
import InterfaceIcon from '../components/InterfaceIcon.vue'
|
|
import Themes from '../components/Themes.vue'
|
|
import MobileAppScreenshots from '../components/MobileAppScreenshots.vue'
|
|
import PlusBadge from '../components/PlusBadge.vue'
|
|
import CaptionedImage from '../components/CaptionedImage.vue'
|
|
import Layout from '../layout/Layout.vue'
|
|
import './custom.pcss'
|
|
|
|
export default {
|
|
Layout,
|
|
extends: DefaultTheme,
|
|
enhanceApp({ app }) {
|
|
app.component('InterfaceIcon', InterfaceIcon)
|
|
app.component('Themes', Themes)
|
|
app.component('UISubjectToChangeNote', UISubjectToChangeNote)
|
|
app.component('MobileAppScreenshots', MobileAppScreenshots)
|
|
app.component('PlusBadge', PlusBadge)
|
|
app.component('CaptionedImage', CaptionedImage)
|
|
}
|
|
} satisfies Theme
|