fix: vue-i18n global scope #2366

Merged
konrad merged 1 commits from dpschen/frontend:feature/fix-i18n-global-scope into main 2022-09-15 09:54:02 +00:00
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ export function useList(listId: MaybeRef<ListModel['id']>) {
const listService = shallowReactive(new ListService())
const {loading: isLoading} = toRefs(listService)
const list : ListModel = reactive(new ListModel({}))
const {t} = useI18n()
const {t} = useI18n({useScope: 'global'})
watch(
() => unref(listId),

View File

@ -120,7 +120,7 @@ import { success } from '@/message'
const SEARCH_DEBOUNCE = 300
const {t} = useI18n()
const {t} = useI18n({useScope: 'global'})
const store = useStore()
const route = useRoute()
const router = useRouter()

View File

@ -95,7 +95,7 @@ const props = defineProps({
const router = useRouter()
const store = useStore()
const {t} = useI18n()
const {t} = useI18n({useScope: 'global'})
const {list, save: saveList, isLoading} = useList(props.listId)