File tree Expand file tree Collapse file tree
apps/frontend/app/layouts Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,10 +11,7 @@ const title = computed(() => route.meta.title && t(route.meta.title))
1111 <div >
1212 <Html :lang =" head.htmlAttrs.lang" :dir =" head.htmlAttrs.dir" class =" font-sans" >
1313 <Head >
14- <!-- Don't set Title tag if we doesn't have a title, this allows `Nuxt SEO`'s fallback title to be used -->
15- <Title v-if =" title" >
16- {{ title }}
17- </Title >
14+ <Title >{{ title }}</Title >
1815 <template v-for =" link in head .link " :key =" link .id " >
1916 <Link :id =" link.id" :rel =" link.rel" :href =" link.href" :hreflang =" link.hreflang" />
2017 </template >
Original file line number Diff line number Diff line change @@ -15,10 +15,7 @@ watch(() => route.name, () => { windowsScroll.measure() })
1515 <div >
1616 <Html :lang =" head.htmlAttrs.lang" :dir =" head.htmlAttrs.dir" class =" font-sans" >
1717 <Head >
18- <!-- Don't set Title tag if we doesn't have a title, this allows `Nuxt SEO`'s fallback title to be used -->
19- <Title v-if =" title" >
20- {{ title }}
21- </Title >
18+ <Title >{{ title }}</Title >
2219 <template v-for =" link in head .link " :key =" link .id " >
2320 <Link :id =" link.id" :rel =" link.rel" :href =" link.href" :hreflang =" link.hreflang" />
2421 </template >
You can’t perform that action at this time.
0 commit comments