I've made an implementation of vue.js in an .net-core mvc project which will return data from a controller. So let's say that the result is:
[{"id":1,"uniqueStr":"string1","ttlValue":"something","hlpValue":"something2"},{"id":2,"uniqueStr":"string2","ttlValue":"something","hlpValue":"something2"}]
I can get the row value with a snippet like:
{{ data[0] }}
So I have two things remaining. The situation is, I need the rows on one page without a loop. So my question would be:
How can I get the "ttlValue" of the row where the "uniqueStr" would be "string2".
I thinking something in the line of but that obviously doesn't function: {{ data[0][1] }}