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