2023-10-23 19:32:36 +08:00

12 lines
274 B
TypeScript

import { h } from 'vue'
import DefaultTheme from 'vitepress/theme'
import SmallAd from './components/SmallAd.vue'
export default {
...DefaultTheme,
Layout() {
return h(DefaultTheme.Layout, null, {
'aside-top': () => h(SmallAd)
})
}
}