Hello I have the following JS that when the AOM is Selected the Centre Name appears in a table.
What I would like to do now is add the Centre No to this selection.
Thanks
export default {
filterPOS:()=>{
const selectedManager = AOM_Select.selectedOptionValue;
return AOM_List.data.filter(depot=>depot.AOM===selectedManager).map(depot=>({centreName:depot['Centre Name']})
);
}
}