I've got this particular item:
{
'application': "BP 9ALT 8 123",
'address': "935 HAMPTON CRES",
'unit': null,
'status': "COMPLETED -ALL INSP SIGNED OFF"
}
I'm looking to turn each key into uppercase like so:
{
'Application': "BP 9ALT 8 123",
'Address': "935 HAMPTON CRES",
'Unit': null,
'Status': "COMPLETED - ALL INSP SIGNED OFF"
}
Any suggestions on how to achieve this easily in Vuejs?