I am facing an issue with my 'region' object. It appears to be displayed correctly with all its attributes, but when I try to access specific attributes, it shows up as 'undefined'.
const region = { "id": 7, "name": "Paraiba", "slug": "paraiba", "created_at": "2022-09-14T23:44:10.000000Z", "updated_at": "2022-09-14T23:44:10.000000Z" }
When I display {{ region }}, it shows the complete object: { "id": 7, "name": "Paraíba", "slug": "paraiba", "created_at": "2022-09-14T23:44:10.000000Z", "updated_at": "2022-09-14T23:44:10.000000Z" }
However, if I attempt to print {{ region.name }}, it comes back as undefined.