mirror of
https://github.com/unraid/api.git
synced 2026-05-06 23:20:30 -05:00
fix: i18n t prop type
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
<script setup lang="ts">
|
||||
// eslint-disable vue/no-v-html
|
||||
import { storeToRefs } from 'pinia';
|
||||
import type { ComposerTranslation } from 'vue-i18n';
|
||||
|
||||
import { useErrorsStore } from '~/store/errors';
|
||||
import type { ServerStateDataAction } from '~/types/server';
|
||||
import type { UserProfileLink } from '~/types/userProfile';
|
||||
|
||||
defineProps<{ t: any; }>();
|
||||
defineProps<{ t: ComposerTranslation; }>();
|
||||
|
||||
const errorsStore = useErrorsStore();
|
||||
const { errors } = storeToRefs(errorsStore);
|
||||
|
||||
Reference in New Issue
Block a user