chore(i18n): resolve ts type error

pull/40/MERGE
xingyu 2023-11-09 11:35:06 +08:00
parent 1092addb5e
commit 21e51d128d
1 changed files with 6 additions and 1 deletions

View File

@ -38,9 +38,14 @@ export function useI18n(namespace?: string): {
const tFn: I18nGlobalTranslation = (key: string, ...arg: any[]) => {
if (!key)
return ''
if (!key.includes('.') && !namespace)
return key
return t(getKey(namespace, key), ...(arg as I18nTranslationRestParameters))
return (t as (arg0: string, ...arg: I18nTranslationRestParameters) => string)(
getKey(namespace, key),
...(arg as I18nTranslationRestParameters),
)
}
return {
...methods,