tav-ui
Version:
15 lines (12 loc) • 336 B
JavaScript
import '../hooks/index2.mjs';
import { useGlobalConfig } from '../hooks/global/useGlobalConfig2.mjs';
const i18nFun = useGlobalConfig("i18nFun");
const tavI18n = (key, vars) => {
if (i18nFun.value) {
return i18nFun.value?.t(key, vars);
} else {
return "";
}
};
export { tavI18n };
//# sourceMappingURL=transfer2.mjs.map