fix: i18n t prop type

This commit is contained in:
Zack Spear
2024-05-15 15:14:46 -07:00
committed by Zack Spear
parent 81a6a52d9f
commit 4bfdb66d46
27 changed files with 56 additions and 27 deletions
+2 -1
View File
@@ -9,6 +9,7 @@ import {
} from '@heroicons/vue/24/solid';
import { storeToRefs } from 'pinia';
import { computed } from 'vue';
import type { ComposerTranslation } from 'vue-i18n';
import { usePurchaseStore } from '~/store/purchase';
import { useUpdateOsStore } from '~/store/updateOs';
@@ -17,7 +18,7 @@ import { useUpdateOsChangelogStore } from '~/store/updateOsChangelog';
export interface Props {
open?: boolean;
t: any;
t: ComposerTranslation;
}
const props = withDefaults(defineProps<Props>(), {