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 {t} = useI18n()
|
||||||
|
|
||||||
const motd = computed(() => store.state.config.motd)
|
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)
|
useTitle(() => title.value)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue