Hi, need little help. I have json in this format.
{
"title": "Example",
"content": "Lorem ipsum",
"img": [
"http://example.com/img.jpg"
]
}
And I can get title and content without problem with {{ item.title }} and {{ item.content }} but having trouble to get this img url. How to get value from that img array? And that array always have just one value.