vue-di-kit
Version:
Vue Dependency Injection Kit
44 lines • 1.54 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var VueClass = /** @class */ (function () {
function VueClass() {
}
VueClass.prototype.$mount = function (elementOrSelector, hydrating) {
throw new Error("Method not implemented.");
};
VueClass.prototype.$forceUpdate = function () {
throw new Error("Method not implemented.");
};
VueClass.prototype.$destroy = function () {
throw new Error("Method not implemented.");
};
VueClass.prototype.$watch = function () {
var args = [];
for (var _i = 0; _i < arguments.length; _i++) {
args[_i] = arguments[_i];
}
throw new Error("Method not implemented.");
};
VueClass.prototype.$on = function (event, callback) {
throw new Error("Method not implemented.");
};
VueClass.prototype.$once = function (event, callback) {
throw new Error("Method not implemented.");
};
VueClass.prototype.$off = function (event, callback) {
throw new Error("Method not implemented.");
};
VueClass.prototype.$emit = function (event) {
var args = [];
for (var _i = 1; _i < arguments.length; _i++) {
args[_i - 1] = arguments[_i];
}
throw new Error("Method not implemented.");
};
VueClass.prototype.$nextTick = function (callback) {
throw new Error("Method not implemented.");
};
return VueClass;
}());
exports.VueClass = VueClass;
//# sourceMappingURL=vue.class.js.map