first commit

This commit is contained in:
编码猿
2024-09-27 00:58:46 +08:00
commit 92916abf8f
156 changed files with 19331 additions and 0 deletions

1
tsVue3Decorators/dist/model/.pydio vendored Normal file
View File

@@ -0,0 +1 @@
67991ae4-3d3c-4efe-ae47-832c0548118d

View File

@@ -0,0 +1,29 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ajaxModel = void 0;
var AjaxModel = /** @class */ (function () {
function AjaxModel() {
}
Object.defineProperty(AjaxModel.prototype, "urlModelContainer", {
get: function () {
return this._urlModelContainer;
},
set: function (AjaxUrl) {
this._urlModelContainer = AjaxUrl;
},
enumerable: false,
configurable: true
});
Object.defineProperty(AjaxModel.prototype, "AjaxModelContainer", {
get: function () {
return this._AjaxModelContainer;
},
set: function (AjaxObjecy) {
this._AjaxModelContainer = AjaxObjecy;
},
enumerable: false,
configurable: true
});
return AjaxModel;
}());
exports.ajaxModel = new AjaxModel();

View File

@@ -0,0 +1,20 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.directiveModel = void 0;
var DirectiveModel = /** @class */ (function () {
function DirectiveModel() {
this._DirectiveContainer = [];
}
Object.defineProperty(DirectiveModel.prototype, "DirectiveContainer", {
get: function () {
return this._DirectiveContainer;
},
set: function (Directive) {
this._DirectiveContainer.push(Directive);
},
enumerable: false,
configurable: true
});
return DirectiveModel;
}());
exports.directiveModel = new DirectiveModel();

View File

@@ -0,0 +1,20 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.globalMethodModel = void 0;
var GlobalMethod = /** @class */ (function () {
function GlobalMethod() {
this._GlobalMethod = [];
}
Object.defineProperty(GlobalMethod.prototype, "GlobalMethod", {
get: function () {
return this._GlobalMethod;
},
set: function (globalMethod) {
this._GlobalMethod.push(globalMethod);
},
enumerable: false,
configurable: true
});
return GlobalMethod;
}());
exports.globalMethodModel = new GlobalMethod();

View File

@@ -0,0 +1,19 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var InjectableModel = /** @class */ (function () {
function InjectableModel() {
this._InjectableModelContainer = [];
}
Object.defineProperty(InjectableModel.prototype, "InjectableModel", {
get: function () {
return this._InjectableModelContainer;
},
set: function (constructor) {
this._InjectableModelContainer.push(constructor);
},
enumerable: true,
configurable: true
});
return InjectableModel;
}());
exports.InjectModel = new InjectableModel();

View File

@@ -0,0 +1,20 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.mixinModel = void 0;
var MixinModel = /** @class */ (function () {
function MixinModel() {
this._MixinContainer = [];
}
Object.defineProperty(MixinModel.prototype, "MixinContainer", {
get: function () {
return this._MixinContainer;
},
set: function (Mixin) {
this._MixinContainer.push(Mixin);
},
enumerable: false,
configurable: true
});
return MixinModel;
}());
exports.mixinModel = new MixinModel();

View File

@@ -0,0 +1,19 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var StartbootModel = /** @class */ (function () {
function StartbootModel() {
this._StartbootModelContainer = [];
}
Object.defineProperty(StartbootModel.prototype, "StartbootModelContainer", {
get: function () {
return this._StartbootModelContainer;
},
set: function (constructor) {
this._StartbootModelContainer.push(constructor);
},
enumerable: true,
configurable: true
});
return StartbootModel;
}());
exports.ajaxModel = new StartbootModel();