vue-rest-client
Version:
A VueJS RESTful client component to easily integrate apps with APIs
20 lines (17 loc) • 426 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
/**
* CRUD data object that must be used to be injected as a collection of
* data attribute in the vue data section
*/
var CRUDData = {
resources: [],
resource: {},
crudReady: false,
modelService: null
}; // Export the CRUD and the CRUDData objects
var _default = CRUDData;
exports["default"] = _default;