getters.js 704 Bytes
Newer Older
Yoelvis Gonzalez's avatar
Yoelvis Gonzalez committed
1 2
export default {
  drawer: state => state.drawer,
Yoelvis Gonzalez's avatar
Yoelvis Gonzalez committed
3 4 5
  systemStatuses: state => state.systemStatuses,
  provinces: state => state.provinces,
  municipalities: state => state.municipalities,
Yoelvis Gonzalez's avatar
Yoelvis Gonzalez committed
6 7 8 9 10 11 12 13
  categories: state => state.categories,
  centers: state => state.centers,
  clasifications: state => state.clasifications,
  antigens: state => state.antigens,
  healthAreas: state => state.healthAreas,
  healthStatuses: state => state.healthStatuses,
  pIndex: state => state.pIndex,
  patient: state => state.patient,
Yoelvis Gonzalez's avatar
Yoelvis Gonzalez committed
14
  user: state => state.user,
Yoelvis Gonzalez's avatar
Yoelvis Gonzalez committed
15 16
  filters: state => state.filters,
  filterStatus: state => state.filterStatus,
Yoelvis Gonzalez's avatar
Yoelvis Gonzalez committed
17
  editFromFile: state => state.editFromFile,
Yoelvis Gonzalez's avatar
Yoelvis Gonzalez committed
18
  patientId: state => state.patientId,
Yoelvis Gonzalez's avatar
Yoelvis Gonzalez committed
19
}