13 lines
610 B
TypeScript
13 lines
610 B
TypeScript
|
|
|
|
// variables
|
|
export const medicineGroups = ref<{ value: string; label: string }[]>([])
|
|
export const medicineMethods = ref<{ value: string; label: string }[]>([])
|
|
export const encounterClasses = ref<{ value: string; label: string }[]>([])
|
|
export const divisions = ref<{ value: string | number; label: string }[]>([])
|
|
export const installations = ref<{ value: string; label: string }[]>([])
|
|
export const specialists = ref<{ value: string | number; label: string }[]>([])
|
|
export const uoms = ref<{ value: string; label: string }[]>([])
|
|
export const units = ref<{ value: string | number; label: string }[]>([])
|
|
|