fix: remove @ts-ignore
This commit is contained in:
parent
c46273ca34
commit
27cd9535bf
@ -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…
x
Reference in New Issue
Block a user