vuexOrm.js 229 B

1234567891011
  1. import VuexORM from '@vuex-orm/core'
  2. const plugin = {
  3. install (store, components, options) {
  4. components.Query.prototype.getAllRelations = function () {
  5. return _.keys(this.eagerLoad);
  6. }
  7. }
  8. }
  9. VuexORM.use(plugin)