14 lines
291 B
Vue
14 lines
291 B
Vue
|
<!--.vitepress/theme/MyLayout.vue-->
|
||
|
<script setup>
|
||
|
import DefaultTheme from 'vitepress/theme'
|
||
|
import DynamicAds from './DynamicAds.vue'
|
||
|
const { Layout } = DefaultTheme
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<Layout>
|
||
|
<template #aside-bottom>
|
||
|
<DynamicAds />
|
||
|
</template>
|
||
|
</Layout>
|
||
|
</template>
|