11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
import DefaultTheme from 'vitepress/theme'
|
|
import Landing from './Landing.vue'
|
|
import './style.css'
|
|
|
|
export default {
|
|
extends: DefaultTheme,
|
|
enhanceApp({ app }) {
|
|
app.component('Landing', Landing)
|
|
},
|
|
}
|