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

@ -8,7 +8,7 @@ const paginator = useMasto().v1.trends.listLinks()
const hideNewsTips = useLocalStorage(STORAGE_KEY_HIDE_EXPLORE_NEWS_TIPS, false)
useHeadFixed({
title: () => isHydrated.value ? `${t('tab.news')} | ${t('nav.explore')}` : '',
title: () => `${t('tab.news')} | ${t('nav.explore')}`,
})
</script>