This is my usecase:
<div v-if="getObject()">
<div v-if="getObject().someBoolean">
{{getObject().someOtherKey}}
</div>
</div>
I don't want to be calling getObject everywhere so I'm wondering if there is a way to simply assign a value after calling getObject and then reusing that within the same div?
Note I can't use v-for since it iterates over the keys, and in my example I need 2 keys in the same iteration.