Skip to content

Commit 890e85d

Browse files
softwarewrightulivz
authored andcommittedOct 21, 2019
fix($theme-default): slots don't allow customization for Sidebar & Page (close: #1950) (#1951)
1 parent d2fef5d commit 890e85d

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed
 

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

+12-16
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,12 @@
1919
:items="sidebarItems"
2020
@toggle-sidebar="toggleSidebar"
2121
>
22-
<slot
23-
name="sidebar-top"
24-
#top
25-
/>
26-
<slot
27-
name="sidebar-bottom"
28-
#bottom
29-
/>
22+
<template #top>
23+
<slot name="sidebar-top" />
24+
</template>
25+
<template #bottom>
26+
<slot name="sidebar-bottom"/>
27+
</template>
3028
</Sidebar>
3129

3230
<Home v-if="$page.frontmatter.home"/>
@@ -35,14 +33,12 @@
3533
v-else
3634
:sidebar-items="sidebarItems"
3735
>
38-
<slot
39-
name="page-top"
40-
#top
41-
/>
42-
<slot
43-
name="page-bottom"
44-
#bottom
45-
/>
36+
<template #top>
37+
<slot name="page-top"/>
38+
</template>
39+
<template #bottom>
40+
<slot name="page-bottom"/>
41+
</template>
4642
</Page>
4743
</div>
4844
</template>

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

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
<template>
22
<ParentLayout>
3-
<CarbonAds #sidebar-top/>
4-
<BuySellAds #page-bottom/>
3+
<template #sidebar-top>
4+
<CarbonAds/>
5+
</template>
6+
<template #page-bottom>
7+
<BuySellAds/>
8+
</template>
59
</ParentLayout>
610
</template>
711

0 commit comments

Comments
 (0)
Please sign in to comment.