上传代码

This commit is contained in:
2025-08-18 14:20:34 +08:00
commit 527fd07910
2408 changed files with 427370 additions and 0 deletions

28
uniapp04/node_modules/@dcloudio/uni-app/dist/app.js generated vendored Normal file
View File

@ -0,0 +1,28 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.init = void 0;
var Vue = require("vue");
function init() {
var vueConstructor = (Vue.default ? Vue.default : Vue);
var defaultMergeHook = vueConstructor.config.optionMergeStrategies.mounted;
var onReadyFn;
vueConstructor.config.optionMergeStrategies.mounted = function Le(parentVal, childVal) {
var res = defaultMergeHook.call(this, parentVal, childVal);
if (Array.isArray(res)) {
var index = void 0;
if (onReadyFn) {
index = res.indexOf(onReadyFn);
}
else {
index = res.findIndex(function (fn) { return fn.toString().includes('onReady'); });
onReadyFn = res[index];
}
if (index !== -1) {
res.splice(index, 1);
res.push(onReadyFn);
}
}
return res;
};
}
exports.init = init;