Here is my code snippet:
<div class="label">{{ item.data[0] }}</div>
and in the view, this is what I have:
{
"id": 6,
"firtname": "JHON ",
"lastname": "SCALA",
"fullname": "JHON SCALA"
}
I just want to display the fullname:
<div class="label">{{ item.data[0].fullname }}</div>
However, I am encountering the following error:
TypeError: Cannot read properties of undefined (reading 'fullname')
What could be causing this issue?