mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-07 07:37:11 -04:00
14 lines
443 B
TypeScript
14 lines
443 B
TypeScript
import { h } from 'vue'
|
|
import type { Theme } from 'vitepress'
|
|
import DefaultTheme from 'vitepress/theme'
|
|
import './styles/vars.css'
|
|
import SvgImage from './components/SvgImage.vue'
|
|
import SearchableTable from './components/SearchableTable.vue'
|
|
|
|
export default {
|
|
extends: DefaultTheme,
|
|
enhanceApp({ app }) {
|
|
app.component('SvgImage', SvgImage)
|
|
app.component('SearchableTable', SearchableTable)
|
|
},
|
|
} satisfies Theme
|