File tree 2 files changed +18
-18
lines changed
2 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 19
19
:items =" sidebarItems"
20
20
@toggle-sidebar =" toggleSidebar"
21
21
>
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 >
30
28
</Sidebar >
31
29
32
30
<Home v-if =" $page.frontmatter.home" />
35
33
v-else
36
34
:sidebar-items =" sidebarItems"
37
35
>
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 >
46
42
</Page >
47
43
</div >
48
44
</template >
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<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 >
5
9
</ParentLayout >
6
10
</template >
7
11
You can’t perform that action at this time.
0 commit comments