first commit
This commit is contained in:
20
tsVue3Decorators/dist/model/mixin.model.js
vendored
Normal file
20
tsVue3Decorators/dist/model/mixin.model.js
vendored
Normal 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();
|
||||
Reference in New Issue
Block a user