vuex-xhr-state
Version:
Use Vuex to manage the state of you're ajax calls.
28 lines (27 loc) • 1.07 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import VuexXhr from './VuexXhr';
var VuexXhrGet = /** @class */ (function (_super) {
__extends(VuexXhrGet, _super);
// @todo getters state enz in this file?
function VuexXhrGet(options) {
var _this = this;
options = options || {};
options.cache = (typeof options.cache === 'undefined' ? true : options.cache);
_this = _super.call(this, options) || this;
return _this;
}
return VuexXhrGet;
}(VuexXhr));
export { VuexXhrGet };