chore(i18n): use global scope

This commit is contained in:
kolaente 2022-10-03 15:20:50 +02:00
parent eb80bfa00d
commit fad72e091b
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ import {useTaskStore} from '@/stores/tasks'
import {useI18n} from 'vue-i18n'
const taskStore = useTaskStore()
const {t} = useI18n()
const {t} = useI18n({useScope: 'global'})
const props = withDefaults(defineProps<{
task: ITask,