Within a collection page component, I am using a computed variable to pass an array of product items to a collection item component. However, I wish to insert an empty collection item after the third product is displayed. This empty collection item should act as a template without any product content inside. If anyone has suggestions on how I can achieve this functionality in Vue.js, I would greatly appreciate it.
Sample code for the collection page:
<collection-item
v-for="product in products"
:collection-item="product"
></collection-item>