mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-09 05:16:23 +10:00
21 lines
413 B
Vue
21 lines
413 B
Vue
<template>
|
|
<ParentLayout>
|
|
<CarbonAds slot="sidebar-top"/>
|
|
<BuySellAds slot="page-bottom"/>
|
|
</ParentLayout>
|
|
</template>
|
|
|
|
<script>
|
|
import ParentLayout from '@parent-theme/layouts/Layout.vue'
|
|
import CarbonAds from '@theme/components/CarbonAds.vue'
|
|
import BuySellAds from '@theme/components/BuySellAds.vue'
|
|
|
|
export default {
|
|
components: {
|
|
ParentLayout,
|
|
CarbonAds,
|
|
BuySellAds
|
|
}
|
|
}
|
|
</script>
|