The v-for directive in vue is truly remarkable.
I am currently faced with a situation where I need to create a description list similar to this. To achieve this, I have to generate two DOM elements for each item in my array:
<dl class="row">
<dt class="col-sm-3">Description lists</dt>
<dd class="col-sm-9">A description list is ideal for defining terms.</dd>
Is there a more elegant way to accomplish this using vue?