私はVueJSにv-forループを持っています。そして、div内のループ要素を2つのグループにまとめたいと思います。例えばVueJS - div内の条件付きラップ
:
<div class="xpto" v-for="item in items"> //this div should wrap a maximum of two components per time
<component :item="item"></component>
</div>
それを達成するための最良の方法だろうか?