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