<div class="recipe-ingredients__container__functions paddings">
<h5>Functions_</h5>
<div class="foo" v-for="f in content.functions"></div>
</div>
When Vue render this html the Ajax call is still in progress so content.functions is not available. After call is complete I can see with Vue Devtools(chrome) that data has been correctly added. Is there a easy way to force Vue to execute again the v-for directive as soon as content.functions becomes available?