migrate two column select to composition API and typescript

This commit is contained in:
MaysWind
2025-01-14 22:23:24 +08:00
parent d3e6756c22
commit cd2e6c1aae
4 changed files with 177 additions and 176 deletions
-8
View File
@@ -1401,14 +1401,6 @@ function initLocale(i18nGlobal, lastUserLanguage, timezone) {
return localeDefaultSettings;
}
export function translateIf(text, isTranslate, translateFn) {
if (isTranslate) {
return translateFn(text);
}
return text;
}
export function translateError(message, translateFn) {
let parameters = {};