We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84fd0ff commit b3d4269Copy full SHA for b3d4269
packages/@vuepress/theme-vue/layouts/Layout.vue
@@ -1,18 +1,18 @@
1
<template>
2
- <Layout>
+ <ParentLayout>
3
<CarbonAds slot="sidebar-top"/>
4
<BuySellAds slot="page-bottom"/>
5
- </Layout>
+ </ParentLayout>
6
</template>
7
8
<script>
9
-import Layout from '@parent-theme/layouts/Layout.vue'
+import ParentLayout from '@parent-theme/layouts/Layout.vue'
10
import CarbonAds from '../components/CarbonAds.vue'
11
import BuySellAds from '../components/BuySellAds.vue'
12
13
export default {
14
components: {
15
- Layout,
+ ParentLayout,
16
CarbonAds,
17
BuySellAds
18
}
0 commit comments