Showing
1 changed file
with
1 additions
and
1 deletions
@@ -23,7 +23,7 @@ export function useTitle() { | @@ -23,7 +23,7 @@ export function useTitle() { | ||
23 | 23 | ||
24 | const tTitle = t(route?.meta?.title as string); | 24 | const tTitle = t(route?.meta?.title as string); |
25 | pageTitle.value = tTitle | 25 | pageTitle.value = tTitle |
26 | - ? ` ${tTitle} - ${storage.get('platInfo').name ?? title} ` | 26 | + ? ` ${tTitle} - ${storage.get('platInfo')?.name ?? title} ` |
27 | : `${title}`; | 27 | : `${title}`; |
28 | }, | 28 | }, |
29 | { immediate: true } | 29 | { immediate: true } |