I have used a loop to create multiple components
<li v-for="card in cardID" :key="card">
<app-profile class="profile" :id="cardID[i++]"></app-profile>
</li>
My goal is to wrap all these components inside a div for centering purposes, but I am having trouble making it work. Any assistance would be greatly appreciated!