fix: remove @ts-ignore
This commit is contained in:
parent
c46273ca34
commit
27cd9535bf
1 changed files with 2 additions and 2 deletions
|
@ -41,8 +41,8 @@ const store = useStore()
|
|||
const {t} = useI18n()
|
||||
|
||||
const motd = computed(() => store.state.config.motd)
|
||||
// @ts-ignore
|
||||
const title = computed(() => t(route.meta.title ?? ''))
|
||||
|
||||
const title = computed(() => t(route.meta?.title as string || ''))
|
||||
useTitle(() => title.value)
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in a new issue