File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,15 @@ const { data: surroundings } = useAsyncData(`${locale.value}-${route.path}-surro
21
21
})
22
22
})
23
23
24
+ useHead ({
25
+ title: page .value ?.title ,
26
+ })
27
+
28
+ useSeoMeta ({
29
+ title: page .value ?.title ,
30
+ description: page .value ?.description ,
31
+ })
32
+
24
33
const prev = computed (() => surroundings .value ?.[0 ])
25
34
const next = computed (() => surroundings .value ?.[1 ])
26
35
@@ -86,9 +95,9 @@ router.beforeEach(() => {
86
95
</script >
87
96
88
97
<template >
89
- <div grid =" ~ rows-[min -content_1fr]" relative h-full >
90
- <div flex =" ~ gap-2 items-center" border =" b base dashed" bg-faded px4 py2 >
91
- <div i-ph-book-duotone />
98
+ <div grid =" ~ rows-[max -content_1fr]" relative h-full >
99
+ <div flex =" ~ gap-x- 2 items-center wrap " border =" b base dashed" bg-faded px4 py2 >
100
+ <div i-ph-book-duotone flex-none />
92
101
<template v-for =" bc , idx of breadcrumbs " :key =" bc .path " >
93
102
<div v-if =" idx !== 0" i-ph-caret-right mx--1 text-sm op50 />
94
103
<NuxtLink :to =" bc.path" text-sm hover =" text-primary" >
You can’t perform that action at this time.
0 commit comments