I cannot render nested object content with v-for, there is a prop which contain object, but the div didn't show when i do v-if="prop". Please help how to solve it. Here is the syntax that i used for render:
<div v-if="statisticBrandBrowsers && statisticBrandBrowsers.length">
<div v-for="(item, index) in statisticBrandBrowsers">
<div>View: {{item.page_view.hits}}</div>
</div>
</div>
My Props:

statisticBrandBrowsersis an object instead of array sostatisticBrandBrowsers.lengthis invalid. Better to have it as an array of browsers. Eg:statisticBrandBrowsers = [{browser: 'Chrome', conversion: {}, page_view: {}}]. Then you don't have to access theindexas well.