File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,11 @@ const route = useRoute();
33
44useSeoMeta ({
55 author: " Thomas Lamant" ,
6- title: (route .title as string ) || " Thomas Lamant" ,
7- ogTitle: (route .title as string ) || " Thomas Lamant" ,
8- description: (route .description as string ) || " Thomas Lamant's homepage" ,
9- ogDescription: (route .description as string ) || " Thomas Lamant's homepage" ,
6+ title: (route .meta .title as string ) || " Thomas Lamant" ,
7+ ogTitle: (route .meta .title as string ) || " Thomas Lamant" ,
8+ description: (route .meta .description as string ) || " Thomas Lamant's homepage" ,
9+ ogDescription:
10+ (route .meta .description as string ) || " Thomas Lamant's homepage" ,
1011});
1112 </script >
1213
Original file line number Diff line number Diff line change @@ -3,10 +3,11 @@ const route = useRoute();
33
44useSeoMeta ({
55 author: " Thomas Lamant" ,
6- title: (route .title as string ) || " Thomas Lamant" ,
7- ogTitle: (route .title as string ) || " Thomas Lamant" ,
8- description: (route .description as string ) || " Thomas Lamant's homepage" ,
9- ogDescription: (route .description as string ) || " Thomas Lamant's homepage" ,
6+ title: (route .meta .title as string ) || " Thomas Lamant" ,
7+ ogTitle: (route .meta .title as string ) || " Thomas Lamant" ,
8+ description: (route .meta .description as string ) || " Thomas Lamant's homepage" ,
9+ ogDescription:
10+ (route .meta .description as string ) || " Thomas Lamant's homepage" ,
1011});
1112 </script >
1213
You can’t perform that action at this time.
0 commit comments