feat: support page titles in opengraph data

This commit is contained in:
Daniel Roe 2023-01-11 23:08:31 +00:00
parent da8594dbf1
commit a12d3d09b1
7 changed files with 20 additions and 6 deletions

View file

@ -5,7 +5,7 @@ const { t } = useI18n()
const paginator = useMasto().v2.suggestions.list({ limit: 20 })
useHeadFixed({
title: () => isHydrated.value ? `${t('tab.for_you')} | ${t('nav.explore')}` : '',
title: () => `${t('tab.for_you')} | ${t('nav.explore')}`,
})
</script>