提交 62eede7c 编写于 作者: fxy060608's avatar fxy060608

chore: build

上级 e3d59bbc
......@@ -2,7 +2,7 @@
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : window || self, factory(window.Tools = {}));
}(this, (function (exports) { 'use strict';
})(this, (function (exports) { 'use strict';
const ACTION_TYPE_PAGE_CREATE = 1;
const ACTION_TYPE_PAGE_CREATED = 2;
......@@ -160,4 +160,4 @@
Object.defineProperty(exports, '__esModule', { value: true });
})));
}));
......@@ -19482,7 +19482,7 @@ var serviceContext = (function (vue) {
return index;
}(Vue));
})(Vue);
const uni = serviceContext.uni;
const getApp = serviceContext.getApp;
const getCurrentPages = serviceContext.getCurrentPages;
......
因为 它太大了无法显示 source diff 。你可以改为 查看blob
......@@ -1543,10 +1543,6 @@ export default function vueFactory(exports) {
get: shallowReadonlyGet
});
var toReactive = value => isObject(value) ? reactive(value) : value;
var toReadonly = value => isObject(value) ? readonly(value) : value;
var toShallow = value => value;
var getProto = v => Reflect.getPrototypeOf(v);
......@@ -2075,6 +2071,10 @@ export default function vueFactory(exports) {
return value;
}
var toReactive = value => isObject(value) ? reactive(value) : value;
var toReadonly = value => isObject(value) ? readonly(value) : value;
function trackRefValue(ref) {
if (isTracking()) {
ref = toRaw(ref);
......@@ -2112,8 +2112,6 @@ export default function vueFactory(exports) {
}
}
var convert = val => isObject(val) ? reactive(val) : val;
function isRef(r) {
return Boolean(r && r.__v_isRef === true);
}
......@@ -2126,13 +2124,21 @@ export default function vueFactory(exports) {
return createRef(value, true);
}
function createRef(rawValue, shallow) {
if (isRef(rawValue)) {
return rawValue;
}
return new RefImpl(rawValue, shallow);
}
class RefImpl {
constructor(value, _shallow) {
this._shallow = _shallow;
this.dep = undefined;
this.__v_isRef = true;
this._rawValue = _shallow ? value : toRaw(value);
this._value = _shallow ? value : convert(value);
this._value = _shallow ? value : toReactive(value);
}
get value() {
......@@ -2145,21 +2151,13 @@ export default function vueFactory(exports) {
if (hasChanged(newVal, this._rawValue)) {
this._rawValue = newVal;
this._value = this._shallow ? newVal : convert(newVal);
this._value = this._shallow ? newVal : toReactive(newVal);
triggerRefValue(this, newVal);
}
}
}
function createRef(rawValue, shallow) {
if (isRef(rawValue)) {
return rawValue;
}
return new RefImpl(rawValue, shallow);
}
function triggerRef(ref) {
triggerRefValue(ref, ref.value);
}
......@@ -2453,15 +2451,39 @@ export default function vueFactory(exports) {
}
var devtools;
var buffer = [];
function setDevtoolsHook(hook) {
function emit(event, ...args) {
if (devtools) {
devtools.emit(event, ...args);
} else {
buffer.push({
event,
args
});
}
}
function setDevtoolsHook(hook, target) {
devtools = hook;
if (devtools) {
devtools.enabled = true;
buffer.forEach(({
event,
args
}) => devtools.emit(event, ...args));
buffer = [];
} else {
var replay = target.__VUE_DEVTOOLS_HOOK_REPLAY__ = target.__VUE_DEVTOOLS_HOOK_REPLAY__ || [];
replay.push(newHook => {
setDevtoolsHook(newHook, target);
});
}
}
function devtoolsInitApp(app, version) {
// TODO queue if devtools is undefined
if (!devtools) return;
devtools.emit("app:init"
emit("app:init"
/* APP_INIT */
, app, version, {
Fragment,
......@@ -2472,8 +2494,7 @@ export default function vueFactory(exports) {
}
function devtoolsUnmountApp(app) {
if (!devtools) return;
devtools.emit("app:unmount"
emit("app:unmount"
/* APP_UNMOUNT */
, app);
}
......@@ -2490,8 +2511,7 @@ export default function vueFactory(exports) {
function createDevtoolsComponentHook(hook) {
return component => {
if (!devtools) return;
devtools.emit(hook, component.appContext.app, component.uid, component.parent ? component.parent.uid : undefined, component);
emit(hook, component.appContext.app, component.uid, component.parent ? component.parent.uid : undefined, component);
};
}
......@@ -2504,19 +2524,17 @@ export default function vueFactory(exports) {
function createDevtoolsPerformanceHook(hook) {
return (component, type, time) => {
if (!devtools) return;
devtools.emit(hook, component.appContext.app, component.uid, component, type, time);
emit(hook, component.appContext.app, component.uid, component, type, time);
};
}
function devtoolsComponentEmit(component, event, params) {
if (!devtools) return;
devtools.emit("component:emit"
emit("component:emit"
/* COMPONENT_EMIT */
, component.appContext.app, component, event, params);
}
function emit(instance, event, ...rawArgs) {
function emit$1(instance, event, ...rawArgs) {
var props = instance.vnode.props || EMPTY_OBJ;
{
var {
......@@ -6605,10 +6623,10 @@ export default function vueFactory(exports) {
function baseCreateRenderer(options, createHydrationFns) {
var target = getGlobalThis();
target.__VUE__ = true;
{
var target = getGlobalThis();
target.__VUE__ = true;
setDevtoolsHook(target.__VUE_DEVTOOLS_GLOBAL_HOOK__);
setDevtoolsHook(target.__VUE_DEVTOOLS_GLOBAL_HOOK__, target);
}
var {
insert: hostInsert,
......@@ -9697,7 +9715,7 @@ export default function vueFactory(exports) {
instance.ctx = createDevRenderContext(instance);
}
instance.root = parent ? parent.root : instance;
instance.emit = emit.bind(null, instance); // apply custom element special handling
instance.emit = emit$1.bind(null, instance); // apply custom element special handling
if (vnode.ce) {
vnode.ce(instance);
......@@ -11254,7 +11272,7 @@ export default function vueFactory(exports) {
} // Core API ------------------------------------------------------------------
var version = "3.2.13";
var version = "3.2.14";
var _ssrUtils = {
createComponentInstance,
setupComponent,
......
......@@ -867,6 +867,12 @@ export default function vueFactory(exports) {
return isNaN(n) ? val : n;
};
var _globalThis;
var getGlobalThis = () => {
return _globalThis || (_globalThis = typeof globalThis !== 'undefined' ? globalThis : typeof self !== 'undefined' ? self : typeof window !== 'undefined' ? window : typeof window !== 'undefined' ? window : {});
};
var activeEffectScope;
var effectScopeStack = [];
......@@ -1475,10 +1481,6 @@ export default function vueFactory(exports) {
get: shallowReadonlyGet
});
var toReactive = value => isObject(value) ? reactive(value) : value;
var toReadonly = value => isObject(value) ? readonly(value) : value;
var toShallow = value => value;
var getProto = v => Reflect.getPrototypeOf(v);
......@@ -1985,6 +1987,10 @@ export default function vueFactory(exports) {
return value;
}
var toReactive = value => isObject(value) ? reactive(value) : value;
var toReadonly = value => isObject(value) ? readonly(value) : value;
function trackRefValue(ref) {
if (isTracking()) {
ref = toRaw(ref);
......@@ -2009,8 +2015,6 @@ export default function vueFactory(exports) {
}
}
var convert = val => isObject(val) ? reactive(val) : val;
function isRef(r) {
return Boolean(r && r.__v_isRef === true);
}
......@@ -2023,13 +2027,21 @@ export default function vueFactory(exports) {
return createRef(value, true);
}
function createRef(rawValue, shallow) {
if (isRef(rawValue)) {
return rawValue;
}
return new RefImpl(rawValue, shallow);
}
class RefImpl {
constructor(value, _shallow) {
this._shallow = _shallow;
this.dep = undefined;
this.__v_isRef = true;
this._rawValue = _shallow ? value : toRaw(value);
this._value = _shallow ? value : convert(value);
this._value = _shallow ? value : toReactive(value);
}
get value() {
......@@ -2042,21 +2054,13 @@ export default function vueFactory(exports) {
if (hasChanged(newVal, this._rawValue)) {
this._rawValue = newVal;
this._value = this._shallow ? newVal : convert(newVal);
this._value = this._shallow ? newVal : toReactive(newVal);
triggerRefValue(this);
}
}
}
function createRef(rawValue, shallow) {
if (isRef(rawValue)) {
return rawValue;
}
return new RefImpl(rawValue, shallow);
}
function triggerRef(ref) {
triggerRefValue(ref);
}
......@@ -2195,12 +2199,27 @@ export default function vueFactory(exports) {
}
var devtools;
var buffer = [];
function setDevtoolsHook(hook) {
function setDevtoolsHook(hook, target) {
devtools = hook;
if (devtools) {
devtools.enabled = true;
buffer.forEach(({
event,
args
}) => devtools.emit(event, ...args));
buffer = [];
} else {
var replay = target.__VUE_DEVTOOLS_HOOK_REPLAY__ = target.__VUE_DEVTOOLS_HOOK_REPLAY__ || [];
replay.push(newHook => {
setDevtoolsHook(newHook, target);
});
}
}
function emit(instance, event, ...rawArgs) {
function emit$1(instance, event, ...rawArgs) {
var props = instance.vnode.props || EMPTY_OBJ;
var args = rawArgs;
var isModelListener = event.startsWith('update:'); // for v-model update:xxx events, apply modifiers on args
......@@ -5647,6 +5666,8 @@ export default function vueFactory(exports) {
function baseCreateRenderer(options, createHydrationFns) {
var target = getGlobalThis();
target.__VUE__ = true;
var {
insert: hostInsert,
remove: hostRemove,
......@@ -8374,7 +8395,7 @@ export default function vueFactory(exports) {
};
}
instance.root = parent ? parent.root : instance;
instance.emit = emit.bind(null, instance); // apply custom element special handling
instance.emit = emit$1.bind(null, instance); // apply custom element special handling
if (vnode.ce) {
vnode.ce(instance);
......@@ -9465,7 +9486,7 @@ export default function vueFactory(exports) {
} // Core API ------------------------------------------------------------------
var version = "3.2.13";
var version = "3.2.14";
var _ssrUtils = {
createComponentInstance,
setupComponent,
......
......@@ -861,8 +861,6 @@ const shallowReadonlyHandlers = /*#__PURE__*/ extend({}, readonlyHandlers, {
get: shallowReadonlyGet
});
const toReactive = (value) => isObject$1(value) ? reactive(value) : value;
const toReadonly = (value) => isObject$1(value) ? readonly(value) : value;
const toShallow = (value) => value;
const getProto = (v) => Reflect.getPrototypeOf(v);
function get$1(target, key, isReadonly = false, isShallow = false) {
......@@ -1251,7 +1249,9 @@ function toRaw(observed) {
function markRaw(value) {
def(value, "__v_skip" /* SKIP */, true);
return value;
}
}
const toReactive = (value) => isObject$1(value) ? reactive(value) : value;
const toReadonly = (value) => isObject$1(value) ? readonly(value) : value;
function trackRefValue(ref) {
if (isTracking()) {
......@@ -1287,7 +1287,6 @@ function triggerRefValue(ref, newVal) {
}
}
}
const convert = (val) => isObject$1(val) ? reactive(val) : val;
function isRef(r) {
return Boolean(r && r.__v_isRef === true);
}
......@@ -1297,13 +1296,19 @@ function ref(value) {
function shallowRef(value) {
return createRef(value, true);
}
function createRef(rawValue, shallow) {
if (isRef(rawValue)) {
return rawValue;
}
return new RefImpl(rawValue, shallow);
}
class RefImpl {
constructor(value, _shallow) {
this._shallow = _shallow;
this.dep = undefined;
this.__v_isRef = true;
this._rawValue = _shallow ? value : toRaw(value);
this._value = _shallow ? value : convert(value);
this._value = _shallow ? value : toReactive(value);
}
get value() {
trackRefValue(this);
......@@ -1313,17 +1318,11 @@ class RefImpl {
newVal = this._shallow ? newVal : toRaw(newVal);
if (hasChanged(newVal, this._rawValue)) {
this._rawValue = newVal;
this._value = this._shallow ? newVal : convert(newVal);
this._value = this._shallow ? newVal : toReactive(newVal);
triggerRefValue(this, newVal);
}
}
}
function createRef(rawValue, shallow) {
if (isRef(rawValue)) {
return rawValue;
}
return new RefImpl(rawValue, shallow);
}
function triggerRef(ref) {
triggerRefValue(ref, (process.env.NODE_ENV !== 'production') ? ref.value : void 0);
}
......@@ -1583,14 +1582,32 @@ function tryWrap(fn) {
}
let devtools;
function setDevtoolsHook(hook) {
let buffer = [];
function emit(event, ...args) {
if (devtools) {
devtools.emit(event, ...args);
}
else {
buffer.push({ event, args });
}
}
function setDevtoolsHook(hook, target) {
devtools = hook;
if (devtools) {
devtools.enabled = true;
buffer.forEach(({ event, args }) => devtools.emit(event, ...args));
buffer = [];
}
else {
const replay = (target.__VUE_DEVTOOLS_HOOK_REPLAY__ =
target.__VUE_DEVTOOLS_HOOK_REPLAY__ || []);
replay.push((newHook) => {
setDevtoolsHook(newHook, target);
});
}
}
function devtoolsInitApp(app, version) {
// TODO queue if devtools is undefined
if (!devtools)
return;
devtools.emit("app:init" /* APP_INIT */, app, version, {
emit("app:init" /* APP_INIT */, app, version, {
Fragment,
Text,
Comment,
......@@ -1598,9 +1615,7 @@ function devtoolsInitApp(app, version) {
});
}
function devtoolsUnmountApp(app) {
if (!devtools)
return;
devtools.emit("app:unmount" /* APP_UNMOUNT */, app);
emit("app:unmount" /* APP_UNMOUNT */, app);
}
const devtoolsComponentAdded = /*#__PURE__*/ createDevtoolsComponentHook("component:added" /* COMPONENT_ADDED */);
const devtoolsComponentUpdated =
......@@ -1609,27 +1624,21 @@ const devtoolsComponentRemoved =
/*#__PURE__*/ createDevtoolsComponentHook("component:removed" /* COMPONENT_REMOVED */);
function createDevtoolsComponentHook(hook) {
return (component) => {
if (!devtools)
return;
devtools.emit(hook, component.appContext.app, component.uid, component.parent ? component.parent.uid : undefined, component);
emit(hook, component.appContext.app, component.uid, component.parent ? component.parent.uid : undefined, component);
};
}
const devtoolsPerfStart = /*#__PURE__*/ createDevtoolsPerformanceHook("perf:start" /* PERFORMANCE_START */);
const devtoolsPerfEnd = /*#__PURE__*/ createDevtoolsPerformanceHook("perf:end" /* PERFORMANCE_END */);
function createDevtoolsPerformanceHook(hook) {
return (component, type, time) => {
if (!devtools)
return;
devtools.emit(hook, component.appContext.app, component.uid, component, type, time);
emit(hook, component.appContext.app, component.uid, component, type, time);
};
}
function devtoolsComponentEmit(component, event, params) {
if (!devtools)
return;
devtools.emit("component:emit" /* COMPONENT_EMIT */, component.appContext.app, component, event, params);
emit("component:emit" /* COMPONENT_EMIT */, component.appContext.app, component, event, params);
}
function emit(instance, event, ...rawArgs) {
function emit$1(instance, event, ...rawArgs) {
const props = instance.vnode.props || EMPTY_OBJ;
if ((process.env.NODE_ENV !== 'production')) {
const { emitsOptions, propsOptions: [propsOptions] } = instance;
......@@ -5034,10 +5043,10 @@ function baseCreateRenderer(options, createHydrationFns) {
{
initFeatureFlags();
}
const target = getGlobalThis();
target.__VUE__ = true;
if ((process.env.NODE_ENV !== 'production') || false) {
const target = getGlobalThis();
target.__VUE__ = true;
setDevtoolsHook(target.__VUE_DEVTOOLS_GLOBAL_HOOK__);
setDevtoolsHook(target.__VUE_DEVTOOLS_GLOBAL_HOOK__, target);
}
const { insert: hostInsert, remove: hostRemove, patchProp: hostPatchProp, createElement: hostCreateElement, createText: hostCreateText, createComment: hostCreateComment, setText: hostSetText, setElementText: hostSetElementText, parentNode: hostParentNode, nextSibling: hostNextSibling, setScopeId: hostSetScopeId = NOOP, cloneNode: hostCloneNode, insertStaticContent: hostInsertStaticContent } = options;
// Note: functions inside this closure should use `const xxx = () => {}`
......@@ -7630,7 +7639,7 @@ function createComponentInstance(vnode, parent, suspense) {
instance.ctx = { _: instance };
}
instance.root = parent ? parent.root : instance;
instance.emit = emit.bind(null, instance);
instance.emit = emit$1.bind(null, instance);
// apply custom element special handling
if (vnode.ce) {
vnode.ce(instance);
......@@ -9026,7 +9035,7 @@ function isMemoSame(cached, memo) {
}
// Core API ------------------------------------------------------------------
const version = "3.2.13";
const version = "3.2.14";
const _ssrUtils = {
createComponentInstance,
setupComponent,
......
......@@ -73,13 +73,19 @@ const initI18nAsyncMsgsOnce = /* @__PURE__ */ uniShared.once(() => {
const name = "uni.async.";
const keys = ["error"];
if (__UNI_FEATURE_I18N_EN__) {
useI18n().add(uniI18n.LOCALE_EN, normalizeMessages(name, keys, ["The connection timed out, click the screen to try again."]), false);
useI18n().add(uniI18n.LOCALE_EN, normalizeMessages(name, keys, [
"The connection timed out, click the screen to try again."
]), false);
}
if (__UNI_FEATURE_I18N_ES__) {
useI18n().add(uniI18n.LOCALE_ES, normalizeMessages(name, keys, ["Se agot\xF3 el tiempo de conexi\xF3n, haga clic en la pantalla para volver a intentarlo."]), false);
useI18n().add(uniI18n.LOCALE_ES, normalizeMessages(name, keys, [
"Se agot\xF3 el tiempo de conexi\xF3n, haga clic en la pantalla para volver a intentarlo."
]), false);
}
if (__UNI_FEATURE_I18N_FR__) {
useI18n().add(uniI18n.LOCALE_FR, normalizeMessages(name, keys, ["La connexion a expir\xE9, cliquez sur l'\xE9cran pour r\xE9essayer."]), false);
useI18n().add(uniI18n.LOCALE_FR, normalizeMessages(name, keys, [
"La connexion a expir\xE9, cliquez sur l'\xE9cran pour r\xE9essayer."
]), false);
}
if (__UNI_FEATURE_I18N_ZH_HANS__) {
useI18n().add(uniI18n.LOCALE_ZH_HANS, normalizeMessages(name, keys, ["\u8FDE\u63A5\u670D\u52A1\u5668\u8D85\u65F6\uFF0C\u70B9\u51FB\u5C4F\u5E55\u91CD\u8BD5"]), false);
......
......@@ -70,13 +70,19 @@ const initI18nAsyncMsgsOnce = /* @__PURE__ */ once(() => {
const name = "uni.async.";
const keys = ["error"];
if (__UNI_FEATURE_I18N_EN__) {
useI18n().add(LOCALE_EN, normalizeMessages(name, keys, ["The connection timed out, click the screen to try again."]), false);
useI18n().add(LOCALE_EN, normalizeMessages(name, keys, [
"The connection timed out, click the screen to try again."
]), false);
}
if (__UNI_FEATURE_I18N_ES__) {
useI18n().add(LOCALE_ES, normalizeMessages(name, keys, ["Se agot\xF3 el tiempo de conexi\xF3n, haga clic en la pantalla para volver a intentarlo."]), false);
useI18n().add(LOCALE_ES, normalizeMessages(name, keys, [
"Se agot\xF3 el tiempo de conexi\xF3n, haga clic en la pantalla para volver a intentarlo."
]), false);
}
if (__UNI_FEATURE_I18N_FR__) {
useI18n().add(LOCALE_FR, normalizeMessages(name, keys, ["La connexion a expir\xE9, cliquez sur l'\xE9cran pour r\xE9essayer."]), false);
useI18n().add(LOCALE_FR, normalizeMessages(name, keys, [
"La connexion a expir\xE9, cliquez sur l'\xE9cran pour r\xE9essayer."
]), false);
}
if (__UNI_FEATURE_I18N_ZH_HANS__) {
useI18n().add(LOCALE_ZH_HANS, normalizeMessages(name, keys, ["\u8FDE\u63A5\u670D\u52A1\u5668\u8D85\u65F6\uFF0C\u70B9\u51FB\u5C4F\u5E55\u91CD\u8BD5"]), false);
......@@ -108,38 +114,58 @@ const initI18nShowToastMsgsOnce = /* @__PURE__ */ once(() => {
const name = "uni.showToast.";
const keys = ["unpaired"];
if (__UNI_FEATURE_I18N_EN__) {
useI18n().add(LOCALE_EN, normalizeMessages(name, keys, ["Please note showToast must be paired with hideToast"]), false);
useI18n().add(LOCALE_EN, normalizeMessages(name, keys, [
"Please note showToast must be paired with hideToast"
]), false);
}
if (__UNI_FEATURE_I18N_ES__) {
useI18n().add(LOCALE_ES, normalizeMessages(name, keys, ["Tenga en cuenta que showToast debe estar emparejado con hideToast"]), false);
useI18n().add(LOCALE_ES, normalizeMessages(name, keys, [
"Tenga en cuenta que showToast debe estar emparejado con hideToast"
]), false);
}
if (__UNI_FEATURE_I18N_FR__) {
useI18n().add(LOCALE_FR, normalizeMessages(name, keys, ["Veuillez noter que showToast doit \xEAtre associ\xE9 \xE0 hideToast"]), false);
useI18n().add(LOCALE_FR, normalizeMessages(name, keys, [
"Veuillez noter que showToast doit \xEAtre associ\xE9 \xE0 hideToast"
]), false);
}
if (__UNI_FEATURE_I18N_ZH_HANS__) {
useI18n().add(LOCALE_ZH_HANS, normalizeMessages(name, keys, ["\u8BF7\u6CE8\u610F showToast \u4E0E hideToast \u5FC5\u987B\u914D\u5BF9\u4F7F\u7528"]), false);
useI18n().add(LOCALE_ZH_HANS, normalizeMessages(name, keys, [
"\u8BF7\u6CE8\u610F showToast \u4E0E hideToast \u5FC5\u987B\u914D\u5BF9\u4F7F\u7528"
]), false);
}
if (__UNI_FEATURE_I18N_ZH_HANT__) {
useI18n().add(LOCALE_ZH_HANT, normalizeMessages(name, keys, ["\u8ACB\u6CE8\u610F showToast \u8207 hideToast \u5FC5\u9808\u914D\u5C0D\u4F7F\u7528"]), false);
useI18n().add(LOCALE_ZH_HANT, normalizeMessages(name, keys, [
"\u8ACB\u6CE8\u610F showToast \u8207 hideToast \u5FC5\u9808\u914D\u5C0D\u4F7F\u7528"
]), false);
}
});
const initI18nShowLoadingMsgsOnce = /* @__PURE__ */ once(() => {
const name = "uni.showLoading.";
const keys = ["unpaired"];
if (__UNI_FEATURE_I18N_EN__) {
useI18n().add(LOCALE_EN, normalizeMessages(name, keys, ["Please note showLoading must be paired with hideLoading"]), false);
useI18n().add(LOCALE_EN, normalizeMessages(name, keys, [
"Please note showLoading must be paired with hideLoading"
]), false);
}
if (__UNI_FEATURE_I18N_ES__) {
useI18n().add(LOCALE_ES, normalizeMessages(name, keys, ["Tenga en cuenta que showLoading debe estar emparejado con hideLoading"]), false);
useI18n().add(LOCALE_ES, normalizeMessages(name, keys, [
"Tenga en cuenta que showLoading debe estar emparejado con hideLoading"
]), false);
}
if (__UNI_FEATURE_I18N_FR__) {
useI18n().add(LOCALE_FR, normalizeMessages(name, keys, ["Veuillez noter que showLoading doit \xEAtre associ\xE9 \xE0 hideLoading"]), false);
useI18n().add(LOCALE_FR, normalizeMessages(name, keys, [
"Veuillez noter que showLoading doit \xEAtre associ\xE9 \xE0 hideLoading"
]), false);
}
if (__UNI_FEATURE_I18N_ZH_HANS__) {
useI18n().add(LOCALE_ZH_HANS, normalizeMessages(name, keys, ["\u8BF7\u6CE8\u610F showLoading \u4E0E hideLoading \u5FC5\u987B\u914D\u5BF9\u4F7F\u7528"]), false);
useI18n().add(LOCALE_ZH_HANS, normalizeMessages(name, keys, [
"\u8BF7\u6CE8\u610F showLoading \u4E0E hideLoading \u5FC5\u987B\u914D\u5BF9\u4F7F\u7528"
]), false);
}
if (__UNI_FEATURE_I18N_ZH_HANT__) {
useI18n().add(LOCALE_ZH_HANT, normalizeMessages(name, keys, ["\u8ACB\u6CE8\u610F showLoading \u8207 hideLoading \u5FC5\u9808\u914D\u5C0D\u4F7F\u7528"]), false);
useI18n().add(LOCALE_ZH_HANT, normalizeMessages(name, keys, [
"\u8ACB\u6CE8\u610F showLoading \u8207 hideLoading \u5FC5\u9808\u914D\u5C0D\u4F7F\u7528"
]), false);
}
});
const initI18nShowModalMsgsOnce = /* @__PURE__ */ once(() => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册