Skip to content

Commit b3d4269

Browse files
committed
fix: RangeError: Maximum call stack size exceeded (build)
1 parent 84fd0ff commit b3d4269

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/@vuepress/theme-vue/layouts/Layout.vue

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<template>
2-
<Layout>
2+
<ParentLayout>
33
<CarbonAds slot="sidebar-top"/>
44
<BuySellAds slot="page-bottom"/>
5-
</Layout>
5+
</ParentLayout>
66
</template>
77

88
<script>
9-
import Layout from '@parent-theme/layouts/Layout.vue'
9+
import ParentLayout from '@parent-theme/layouts/Layout.vue'
1010
import CarbonAds from '../components/CarbonAds.vue'
1111
import BuySellAds from '../components/BuySellAds.vue'
1212
1313
export default {
1414
components: {
15-
Layout,
15+
ParentLayout,
1616
CarbonAds,
1717
BuySellAds
1818
}

0 commit comments

Comments
 (0)