I have a Javascript object from a part of a Graph that on some rows may not have all data details
So when I put this on the HTML
{{ip.Out.StockItem[0].Out.Properties.Name}}
VueJS gives this error on console
Unable to get property 'Name' of undefined or null reference"
and does not render the page when the Properties is null.
I tried
{{ip.Out.ItemEstoque[0].Out.Properties?.Nome}}
But then no error, and no page is rendered.
The data comes from a WebAPI and I can not enforce all objects will have all data filled in.
How to solve this?