<div class="recipe-ingredients__container__functions paddings">
<h5>Functions_</h5>
<div class="foo" v-for="f in content.functions"></div>
</div>
When the HTML is rendered by Vue, the Ajax call is still in progress, so the content.functions data is not yet available. However, after the call is complete, I can see that the data has been correctly added using Vue Devtools in Chrome. Is there a simple way to trigger Vue to re-execute the v-for directive once the content.functions data becomes available?