We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbadf78 commit 7abb56aCopy full SHA for 7abb56a
src/components/NavBar.vue
@@ -12,9 +12,10 @@ function onBack() {
12
const { t } = useI18n()
13
14
const title = computed(() => {
15
- if (!route.meta || !route.meta.title)
+ if (!route.meta)
16
return ''
17
- return route.meta.i18n ? t(route.meta.i18n) : route.meta.title
+
18
+ return route.meta.i18n ? t(route.meta.i18n) : (route.meta.title || '')
19
})
20
</script>
21
0 commit comments