chore(i18n): use global scope

This commit is contained in:
kolaente 2022-10-03 15:20:50 +02:00
parent eb80bfa00d
commit fad72e091b
No known key found for this signature in database
GPG key ID: F40E70337AB24C9B

View file

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